Module Contents
alltypes
Module Contents
data
class
AccountId
Module Contents
AccountId
(
id
:
String
)
val
id
:
String
class
AddCardWidget
:
LinearLayout
,
ValidationListener
Module Contents
AddCardWidget
(
context
:
Context
?
)
AddCardWidget
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
AddCardWidget
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
addCardWidgetValidationListener
:
ValidationListener
?
var
card
:
CardData
?
var
isValid
:
Boolean
fun
isValidDidChange
(
isValid
:
Boolean
)
:
Unit
val
mCardNumberEditText
:
CardNumberEditText
val
mExpiryDateEditText
:
ExpiryDateEditText
val
mSecurityCodeEditText
:
SecurityCodeEditText
data
class
ApiResult
:
ApiResultInterface
Module Contents
ApiResult
(
result
:
ApiResultInfo
)
val
OK
:
Int
val
result
:
ApiResultInfo
data
class
ApiResultInfo
Module Contents
ApiResultInfo
(
code
:
Int
,
message
:
String
)
val
code
:
Int
val
message
:
String
interface
ApiResultInterface
Module Contents
abstract
val
result
:
ApiResultInfo
interface
BackendAdapter
<
V
>
Module Contents
abstract
fun
addCardCompleted
(
transactionId
:
TransactionId
,
completion
:
(
Result
<
V
,
Exception
>
)
->
Unit
)
:
Unit
abstract
fun
getTransactionId
(
completion
:
(
Result
<
TransactionId
,
Exception
>
)
->
Unit
)
:
Unit
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BASE_URL
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BASE_URL
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
CallbackResult
<
T
>
:
Callback
<
T
>
Module Contents
CallbackResult
(
completion
:
(
Result
<
T
,
Exception
>
)
->
Unit
)
val
completion
:
(
Result
<
T
,
Exception
>
)
->
Unit
fun
onFailure
(
call
:
Call
<
T
>
,
t
:
Throwable
)
:
Unit
fun
onResponse
(
call
:
Call
<
T
>
,
response
:
Response
<
T
>
)
:
Unit
class
CallbackResultConvert
<
T
:
ApiResultInterface
,
R
>
:
Callback
<
T
>
Module Contents
CallbackResultConvert
(
completion
:
(
Result
<
R
,
Exception
>
)
->
Unit
,
convert
:
(
T
)
->
Result
<
R
,
Exception
>
)
val
completion
:
(
Result
<
R
,
Exception
>
)
->
Unit
val
convert
:
(
T
)
->
Result
<
R
,
Exception
>
fun
onFailure
(
call
:
Call
<
T
>
,
t
:
Throwable
)
:
Unit
fun
onResponse
(
call
:
Call
<
T
>
,
response
:
Response
<
T
>
)
:
Unit
sealed
class
CardBrand
:
CardBrandData
Module Contents
val
allCases
:
Array
<
CardBrand
>
object
americanExpress
:
CardBrand
open
val
cvcLength
:
IntArray
open
val
description
:
String
object
dinersClub
:
CardBrand
object
discover
:
CardBrand
open
val
format
:
Array
<
Int
>
fun
fromCardNumber
(
cardNumber
:
String
)
:
CardBrand
?
object
jcb
:
CardBrand
object
mastercard
:
CardBrand
open
val
panLength
:
IntArray
open
val
pattern
:
String
object
visa
:
CardBrand
data
class
CardData
Module Contents
CardData
(
pan
:
String
,
cvc
:
String
,
expiryDate
:
ExpiryDate
)
val
cvc
:
String
val
expiryDate
:
ExpiryDate
fun
formatCardNumber
(
cardNumber
:
String
)
:
String
fun
formatSecurityCode
(
securityCode
:
String
,
cardBrand
:
CardBrand
?
)
:
String
fun
isCardNumberValid
(
cardNumber
:
String
)
:
Boolean
fun
isSecurityCodeValid
(
securityCode
:
String
,
cardBrand
:
CardBrand
?
)
:
Boolean
val
pan
:
String
class
CardNumberEditText
:
EditText
Module Contents
CardNumberEditText
(
context
:
Context
?
)
CardNumberEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
CardNumberEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
open
class
EditText
:
TextInputEditText
Module Contents
EditText
(
context
:
Context
?
)
EditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
EditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
editTextValidationListener
:
ValidationListener
?
var
errorText
:
String
?
var
format
:
(
String
)
->
String
var
hintText
:
String
?
var
isValid
:
Boolean
protected
open
fun
onFocusChanged
(
focused
:
Boolean
,
direction
:
Int
,
previouslyFocusedRect
:
Rect
?
)
:
Unit
var
textLayout
:
TextInputLayout
?
var
validate
:
(
String
)
->
Boolean
class
EmptyDataException
:
Exception
Module Contents
EmptyDataException
(
)
data
class
EncryptionKey
Module Contents
EncryptionKey
(
key
:
String
)
val
key
:
String
enum
class
Environment
:
EnvironmentInterface
Module Contents
Production
Module Contents
var
baseURL
:
String
Sandbox
Module Contents
var
baseURL
:
String
interface
EnvironmentInterface
:
ServerBaseURL
data
class
ExpiryDate
Module Contents
ExpiryDate
(
month
:
String
,
year
:
String
)
fun
format
(
expiryDate
:
String
,
deleting
:
Boolean
=
false
)
:
String
fun
fromString
(
expiryDate
:
String
)
:
ExpiryDate
?
val
isValid
:
Boolean
fun
isValid
(
expiryDateString
:
String
)
:
Boolean
val
month
:
String
val
year
:
String
class
ExpiryDateEditText
:
EditText
Module Contents
ExpiryDateEditText
(
context
:
Context
?
)
ExpiryDateEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
ExpiryDateEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
class
InternalErrorException
:
Exception
Module Contents
InternalErrorException
(
code
:
Int
,
message
:
String
)
class
InvalidDataException
:
Exception
Module Contents
InvalidDataException
(
message
:
String
)
data
class
MerchantId
Module Contents
MerchantId
(
id
:
String
)
val
id
:
String
data
class
PaymentConfig
Module Contents
PaymentConfig
(
merchantId
:
MerchantId
,
accountId
:
AccountId
,
environment
:
EnvironmentInterface
)
val
accountId
:
AccountId
val
environment
:
EnvironmentInterface
val
merchantId
:
MerchantId
class
PaymentContext
<
V
>
Module Contents
PaymentContext
(
config
:
PaymentConfig
,
backendAdapter
:
BackendAdapter
<
V
>
)
fun
addCard
(
card
:
CardData
,
completion
:
(
Result
<
V
,
Exception
>
)
->
Unit
)
:
Unit
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
var
abc_fade_in
:
Int
static
var
abc_fade_out
:
Int
static
var
abc_grow_fade_in_from_bottom
:
Int
static
var
abc_popup_enter
:
Int
static
var
abc_popup_exit
:
Int
static
var
abc_shrink_fade_out_from_bottom
:
Int
static
var
abc_slide_in_bottom
:
Int
static
var
abc_slide_in_top
:
Int
static
var
abc_slide_out_bottom
:
Int
static
var
abc_slide_out_top
:
Int
static
var
abc_tooltip_enter
:
Int
static
var
abc_tooltip_exit
:
Int
static
var
design_bottom_sheet_slide_in
:
Int
static
var
design_bottom_sheet_slide_out
:
Int
static
var
design_snackbar_in
:
Int
static
var
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
var
design_appbar_state_list_animator
:
Int
static
var
design_fab_hide_motion_spec
:
Int
static
var
design_fab_show_motion_spec
:
Int
static
var
mtrl_btn_state_list_anim
:
Int
static
var
mtrl_btn_unelevated_state_list_anim
:
Int
static
var
mtrl_chip_state_list_anim
:
Int
static
var
mtrl_fab_hide_motion_spec
:
Int
static
var
mtrl_fab_show_motion_spec
:
Int
static
var
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
var
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
var
actionBarDivider
:
Int
static
var
actionBarItemBackground
:
Int
static
var
actionBarPopupTheme
:
Int
static
var
actionBarSize
:
Int
static
var
actionBarSplitStyle
:
Int
static
var
actionBarStyle
:
Int
static
var
actionBarTabBarStyle
:
Int
static
var
actionBarTabStyle
:
Int
static
var
actionBarTabTextStyle
:
Int
static
var
actionBarTheme
:
Int
static
var
actionBarWidgetTheme
:
Int
static
var
actionButtonStyle
:
Int
static
var
actionDropDownStyle
:
Int
static
var
actionLayout
:
Int
static
var
actionMenuTextAppearance
:
Int
static
var
actionMenuTextColor
:
Int
static
var
actionModeBackground
:
Int
static
var
actionModeCloseButtonStyle
:
Int
static
var
actionModeCloseDrawable
:
Int
static
var
actionModeCopyDrawable
:
Int
static
var
actionModeCutDrawable
:
Int
static
var
actionModeFindDrawable
:
Int
static
var
actionModePasteDrawable
:
Int
static
var
actionModePopupWindowStyle
:
Int
static
var
actionModeSelectAllDrawable
:
Int
static
var
actionModeShareDrawable
:
Int
static
var
actionModeSplitBackground
:
Int
static
var
actionModeStyle
:
Int
static
var
actionModeWebSearchDrawable
:
Int
static
var
actionOverflowButtonStyle
:
Int
static
var
actionOverflowMenuStyle
:
Int
static
var
actionProviderClass
:
Int
static
var
actionViewClass
:
Int
static
var
activityChooserViewStyle
:
Int
static
var
alertDialogButtonGroupStyle
:
Int
static
var
alertDialogCenterButtons
:
Int
static
var
alertDialogStyle
:
Int
static
var
alertDialogTheme
:
Int
static
var
allowStacking
:
Int
static
var
alpha
:
Int
static
var
alphabeticModifiers
:
Int
static
var
arrowHeadLength
:
Int
static
var
arrowShaftLength
:
Int
static
var
autoCompleteTextViewStyle
:
Int
static
var
autoSizeMaxTextSize
:
Int
static
var
autoSizeMinTextSize
:
Int
static
var
autoSizePresetSizes
:
Int
static
var
autoSizeStepGranularity
:
Int
static
var
autoSizeTextType
:
Int
static
var
background
:
Int
static
var
backgroundSplit
:
Int
static
var
backgroundStacked
:
Int
static
var
backgroundTint
:
Int
static
var
backgroundTintMode
:
Int
static
var
barLength
:
Int
static
var
barrierAllowsGoneWidgets
:
Int
static
var
barrierDirection
:
Int
static
var
behavior_autoHide
:
Int
static
var
behavior_fitToContents
:
Int
static
var
behavior_hideable
:
Int
static
var
behavior_overlapTop
:
Int
static
var
behavior_peekHeight
:
Int
static
var
behavior_skipCollapsed
:
Int
static
var
borderWidth
:
Int
static
var
borderlessButtonStyle
:
Int
static
var
bottomAppBarStyle
:
Int
static
var
bottomNavigationStyle
:
Int
static
var
bottomSheetDialogTheme
:
Int
static
var
bottomSheetStyle
:
Int
static
var
boxBackgroundColor
:
Int
static
var
boxBackgroundMode
:
Int
static
var
boxCollapsedPaddingTop
:
Int
static
var
boxCornerRadiusBottomEnd
:
Int
static
var
boxCornerRadiusBottomStart
:
Int
static
var
boxCornerRadiusTopEnd
:
Int
static
var
boxCornerRadiusTopStart
:
Int
static
var
boxStrokeColor
:
Int
static
var
boxStrokeWidth
:
Int
static
var
buttonBarButtonStyle
:
Int
static
var
buttonBarNegativeButtonStyle
:
Int
static
var
buttonBarNeutralButtonStyle
:
Int
static
var
buttonBarPositiveButtonStyle
:
Int
static
var
buttonBarStyle
:
Int
static
var
buttonGravity
:
Int
static
var
buttonIconDimen
:
Int
static
var
buttonPanelSideLayout
:
Int
static
var
buttonStyle
:
Int
static
var
buttonStyleSmall
:
Int
static
var
buttonTint
:
Int
static
var
buttonTintMode
:
Int
static
var
cardBackgroundColor
:
Int
static
var
cardCornerRadius
:
Int
static
var
cardElevation
:
Int
static
var
cardMaxElevation
:
Int
static
var
cardPreventCornerOverlap
:
Int
static
var
cardUseCompatPadding
:
Int
static
var
cardViewStyle
:
Int
static
var
chainUseRtl
:
Int
static
var
checkboxStyle
:
Int
static
var
checkedChip
:
Int
static
var
checkedIcon
:
Int
static
var
checkedIconEnabled
:
Int
static
var
checkedIconVisible
:
Int
static
var
checkedTextViewStyle
:
Int
static
var
chipBackgroundColor
:
Int
static
var
chipCornerRadius
:
Int
static
var
chipEndPadding
:
Int
static
var
chipGroupStyle
:
Int
static
var
chipIcon
:
Int
static
var
chipIconEnabled
:
Int
static
var
chipIconSize
:
Int
static
var
chipIconTint
:
Int
static
var
chipIconVisible
:
Int
static
var
chipMinHeight
:
Int
static
var
chipSpacing
:
Int
static
var
chipSpacingHorizontal
:
Int
static
var
chipSpacingVertical
:
Int
static
var
chipStandaloneStyle
:
Int
static
var
chipStartPadding
:
Int
static
var
chipStrokeColor
:
Int
static
var
chipStrokeWidth
:
Int
static
var
chipStyle
:
Int
static
var
closeIcon
:
Int
static
var
closeIconEnabled
:
Int
static
var
closeIconEndPadding
:
Int
static
var
closeIconSize
:
Int
static
var
closeIconStartPadding
:
Int
static
var
closeIconTint
:
Int
static
var
closeIconVisible
:
Int
static
var
closeItemLayout
:
Int
static
var
collapseContentDescription
:
Int
static
var
collapseIcon
:
Int
static
var
collapsedTitleGravity
:
Int
static
var
collapsedTitleTextAppearance
:
Int
static
var
color
:
Int
static
var
colorAccent
:
Int
static
var
colorBackgroundFloating
:
Int
static
var
colorButtonNormal
:
Int
static
var
colorControlActivated
:
Int
static
var
colorControlHighlight
:
Int
static
var
colorControlNormal
:
Int
static
var
colorError
:
Int
static
var
colorPrimary
:
Int
static
var
colorPrimaryDark
:
Int
static
var
colorSecondary
:
Int
static
var
colorSwitchThumbNormal
:
Int
static
var
commitIcon
:
Int
static
var
constraintSet
:
Int
static
var
constraint_referenced_ids
:
Int
static
var
content
:
Int
static
var
contentDescription
:
Int
static
var
contentInsetEnd
:
Int
static
var
contentInsetEndWithActions
:
Int
static
var
contentInsetLeft
:
Int
static
var
contentInsetRight
:
Int
static
var
contentInsetStart
:
Int
static
var
contentInsetStartWithNavigation
:
Int
static
var
contentPadding
:
Int
static
var
contentPaddingBottom
:
Int
static
var
contentPaddingLeft
:
Int
static
var
contentPaddingRight
:
Int
static
var
contentPaddingTop
:
Int
static
var
contentScrim
:
Int
static
var
controlBackground
:
Int
static
var
coordinatorLayoutStyle
:
Int
static
var
cornerRadius
:
Int
static
var
counterEnabled
:
Int
static
var
counterMaxLength
:
Int
static
var
counterOverflowTextAppearance
:
Int
static
var
counterTextAppearance
:
Int
static
var
customNavigationLayout
:
Int
static
var
defaultQueryHint
:
Int
static
var
dialogCornerRadius
:
Int
static
var
dialogPreferredPadding
:
Int
static
var
dialogTheme
:
Int
static
var
displayOptions
:
Int
static
var
divider
:
Int
static
var
dividerHorizontal
:
Int
static
var
dividerPadding
:
Int
static
var
dividerVertical
:
Int
static
var
drawableSize
:
Int
static
var
drawerArrowStyle
:
Int
static
var
dropDownListViewStyle
:
Int
static
var
dropdownListPreferredItemHeight
:
Int
static
var
editTextBackground
:
Int
static
var
editTextColor
:
Int
static
var
editTextStyle
:
Int
static
var
elevation
:
Int
static
var
emptyVisibility
:
Int
static
var
enforceMaterialTheme
:
Int
static
var
enforceTextAppearance
:
Int
static
var
errorEnabled
:
Int
static
var
errorTextAppearance
:
Int
static
var
expandActivityOverflowButtonDrawable
:
Int
static
var
expanded
:
Int
static
var
expandedTitleGravity
:
Int
static
var
expandedTitleMargin
:
Int
static
var
expandedTitleMarginBottom
:
Int
static
var
expandedTitleMarginEnd
:
Int
static
var
expandedTitleMarginStart
:
Int
static
var
expandedTitleMarginTop
:
Int
static
var
expandedTitleTextAppearance
:
Int
static
var
fabAlignmentMode
:
Int
static
var
fabCradleMargin
:
Int
static
var
fabCradleRoundedCornerRadius
:
Int
static
var
fabCradleVerticalOffset
:
Int
static
var
fabCustomSize
:
Int
static
var
fabSize
:
Int
static
var
fastScrollEnabled
:
Int
static
var
fastScrollHorizontalThumbDrawable
:
Int
static
var
fastScrollHorizontalTrackDrawable
:
Int
static
var
fastScrollVerticalThumbDrawable
:
Int
static
var
fastScrollVerticalTrackDrawable
:
Int
static
var
firstBaselineToTopHeight
:
Int
static
var
floatingActionButtonStyle
:
Int
static
var
font
:
Int
static
var
fontFamily
:
Int
static
var
fontProviderAuthority
:
Int
static
var
fontProviderCerts
:
Int
static
var
fontProviderFetchStrategy
:
Int
static
var
fontProviderFetchTimeout
:
Int
static
var
fontProviderPackage
:
Int
static
var
fontProviderQuery
:
Int
static
var
fontStyle
:
Int
static
var
fontVariationSettings
:
Int
static
var
fontWeight
:
Int
static
var
foregroundInsidePadding
:
Int
static
var
gapBetweenBars
:
Int
static
var
goIcon
:
Int
static
var
headerLayout
:
Int
static
var
height
:
Int
static
var
helperText
:
Int
static
var
helperTextEnabled
:
Int
static
var
helperTextTextAppearance
:
Int
static
var
hideMotionSpec
:
Int
static
var
hideOnContentScroll
:
Int
static
var
hideOnScroll
:
Int
static
var
hintAnimationEnabled
:
Int
static
var
hintEnabled
:
Int
static
var
hintTextAppearance
:
Int
static
var
homeAsUpIndicator
:
Int
static
var
homeLayout
:
Int
static
var
hoveredFocusedTranslationZ
:
Int
static
var
icon
:
Int
static
var
iconEndPadding
:
Int
static
var
iconGravity
:
Int
static
var
iconPadding
:
Int
static
var
iconSize
:
Int
static
var
iconStartPadding
:
Int
static
var
iconTint
:
Int
static
var
iconTintMode
:
Int
static
var
iconifiedByDefault
:
Int
static
var
imageButtonStyle
:
Int
static
var
indeterminateProgressStyle
:
Int
static
var
initialActivityCount
:
Int
static
var
insetForeground
:
Int
static
var
isLightTheme
:
Int
static
var
itemBackground
:
Int
static
var
itemHorizontalPadding
:
Int
static
var
itemHorizontalTranslationEnabled
:
Int
static
var
itemIconPadding
:
Int
static
var
itemIconSize
:
Int
static
var
itemIconTint
:
Int
static
var
itemPadding
:
Int
static
var
itemSpacing
:
Int
static
var
itemTextAppearance
:
Int
static
var
itemTextAppearanceActive
:
Int
static
var
itemTextAppearanceInactive
:
Int
static
var
itemTextColor
:
Int
static
var
keylines
:
Int
static
var
labelVisibilityMode
:
Int
static
var
lastBaselineToBottomHeight
:
Int
static
var
layout
:
Int
static
var
layoutManager
:
Int
static
var
layout_anchor
:
Int
static
var
layout_anchorGravity
:
Int
static
var
layout_behavior
:
Int
static
var
layout_collapseMode
:
Int
static
var
layout_collapseParallaxMultiplier
:
Int
static
var
layout_constrainedHeight
:
Int
static
var
layout_constrainedWidth
:
Int
static
var
layout_constraintBaseline_creator
:
Int
static
var
layout_constraintBaseline_toBaselineOf
:
Int
static
var
layout_constraintBottom_creator
:
Int
static
var
layout_constraintBottom_toBottomOf
:
Int
static
var
layout_constraintBottom_toTopOf
:
Int
static
var
layout_constraintCircle
:
Int
static
var
layout_constraintCircleAngle
:
Int
static
var
layout_constraintCircleRadius
:
Int
static
var
layout_constraintDimensionRatio
:
Int
static
var
layout_constraintEnd_toEndOf
:
Int
static
var
layout_constraintEnd_toStartOf
:
Int
static
var
layout_constraintGuide_begin
:
Int
static
var
layout_constraintGuide_end
:
Int
static
var
layout_constraintGuide_percent
:
Int
static
var
layout_constraintHeight_default
:
Int
static
var
layout_constraintHeight_max
:
Int
static
var
layout_constraintHeight_min
:
Int
static
var
layout_constraintHeight_percent
:
Int
static
var
layout_constraintHorizontal_bias
:
Int
static
var
layout_constraintHorizontal_chainStyle
:
Int
static
var
layout_constraintHorizontal_weight
:
Int
static
var
layout_constraintLeft_creator
:
Int
static
var
layout_constraintLeft_toLeftOf
:
Int
static
var
layout_constraintLeft_toRightOf
:
Int
static
var
layout_constraintRight_creator
:
Int
static
var
layout_constraintRight_toLeftOf
:
Int
static
var
layout_constraintRight_toRightOf
:
Int
static
var
layout_constraintStart_toEndOf
:
Int
static
var
layout_constraintStart_toStartOf
:
Int
static
var
layout_constraintTop_creator
:
Int
static
var
layout_constraintTop_toBottomOf
:
Int
static
var
layout_constraintTop_toTopOf
:
Int
static
var
layout_constraintVertical_bias
:
Int
static
var
layout_constraintVertical_chainStyle
:
Int
static
var
layout_constraintVertical_weight
:
Int
static
var
layout_constraintWidth_default
:
Int
static
var
layout_constraintWidth_max
:
Int
static
var
layout_constraintWidth_min
:
Int
static
var
layout_constraintWidth_percent
:
Int
static
var
layout_dodgeInsetEdges
:
Int
static
var
layout_editor_absoluteX
:
Int
static
var
layout_editor_absoluteY
:
Int
static
var
layout_goneMarginBottom
:
Int
static
var
layout_goneMarginEnd
:
Int
static
var
layout_goneMarginLeft
:
Int
static
var
layout_goneMarginRight
:
Int
static
var
layout_goneMarginStart
:
Int
static
var
layout_goneMarginTop
:
Int
static
var
layout_insetEdge
:
Int
static
var
layout_keyline
:
Int
static
var
layout_optimizationLevel
:
Int
static
var
layout_scrollFlags
:
Int
static
var
layout_scrollInterpolator
:
Int
static
var
liftOnScroll
:
Int
static
var
lineHeight
:
Int
static
var
lineSpacing
:
Int
static
var
listChoiceBackgroundIndicator
:
Int
static
var
listDividerAlertDialog
:
Int
static
var
listItemLayout
:
Int
static
var
listLayout
:
Int
static
var
listMenuViewStyle
:
Int
static
var
listPopupWindowStyle
:
Int
static
var
listPreferredItemHeight
:
Int
static
var
listPreferredItemHeightLarge
:
Int
static
var
listPreferredItemHeightSmall
:
Int
static
var
listPreferredItemPaddingLeft
:
Int
static
var
listPreferredItemPaddingRight
:
Int
static
var
logo
:
Int
static
var
logoDescription
:
Int
static
var
materialButtonStyle
:
Int
static
var
materialCardViewStyle
:
Int
static
var
maxActionInlineWidth
:
Int
static
var
maxButtonHeight
:
Int
static
var
maxImageSize
:
Int
static
var
measureWithLargestChild
:
Int
static
var
menu
:
Int
static
var
multiChoiceItemLayout
:
Int
static
var
navigationContentDescription
:
Int
static
var
navigationIcon
:
Int
static
var
navigationMode
:
Int
static
var
navigationViewStyle
:
Int
static
var
numericModifiers
:
Int
static
var
overlapAnchor
:
Int
static
var
paddingBottomNoButtons
:
Int
static
var
paddingEnd
:
Int
static
var
paddingStart
:
Int
static
var
paddingTopNoTitle
:
Int
static
var
panelBackground
:
Int
static
var
panelMenuListTheme
:
Int
static
var
panelMenuListWidth
:
Int
static
var
passwordToggleContentDescription
:
Int
static
var
passwordToggleDrawable
:
Int
static
var
passwordToggleEnabled
:
Int
static
var
passwordToggleTint
:
Int
static
var
passwordToggleTintMode
:
Int
static
var
popupMenuStyle
:
Int
static
var
popupTheme
:
Int
static
var
popupWindowStyle
:
Int
static
var
preserveIconSpacing
:
Int
static
var
pressedTranslationZ
:
Int
static
var
progressBarPadding
:
Int
static
var
progressBarStyle
:
Int
static
var
queryBackground
:
Int
static
var
queryHint
:
Int
static
var
radioButtonStyle
:
Int
static
var
ratingBarStyle
:
Int
static
var
ratingBarStyleIndicator
:
Int
static
var
ratingBarStyleSmall
:
Int
static
var
reverseLayout
:
Int
static
var
rippleColor
:
Int
static
var
scrimAnimationDuration
:
Int
static
var
scrimBackground
:
Int
static
var
scrimVisibleHeightTrigger
:
Int
static
var
searchHintIcon
:
Int
static
var
searchIcon
:
Int
static
var
searchViewStyle
:
Int
static
var
seekBarStyle
:
Int
static
var
selectableItemBackground
:
Int
static
var
selectableItemBackgroundBorderless
:
Int
static
var
showAsAction
:
Int
static
var
showDividers
:
Int
static
var
showMotionSpec
:
Int
static
var
showText
:
Int
static
var
showTitle
:
Int
static
var
singleChoiceItemLayout
:
Int
static
var
singleLine
:
Int
static
var
singleSelection
:
Int
static
var
snackbarButtonStyle
:
Int
static
var
snackbarStyle
:
Int
static
var
spanCount
:
Int
static
var
spinBars
:
Int
static
var
spinnerDropDownItemStyle
:
Int
static
var
spinnerStyle
:
Int
static
var
splitTrack
:
Int
static
var
srcCompat
:
Int
static
var
stackFromEnd
:
Int
static
var
state_above_anchor
:
Int
static
var
state_collapsed
:
Int
static
var
state_collapsible
:
Int
static
var
state_liftable
:
Int
static
var
state_lifted
:
Int
static
var
statusBarBackground
:
Int
static
var
statusBarScrim
:
Int
static
var
strokeColor
:
Int
static
var
strokeWidth
:
Int
static
var
subMenuArrow
:
Int
static
var
submitBackground
:
Int
static
var
subtitle
:
Int
static
var
subtitleTextAppearance
:
Int
static
var
subtitleTextColor
:
Int
static
var
subtitleTextStyle
:
Int
static
var
suggestionRowLayout
:
Int
static
var
switchMinWidth
:
Int
static
var
switchPadding
:
Int
static
var
switchStyle
:
Int
static
var
switchTextAppearance
:
Int
static
var
tabBackground
:
Int
static
var
tabContentStart
:
Int
static
var
tabGravity
:
Int
static
var
tabIconTint
:
Int
static
var
tabIconTintMode
:
Int
static
var
tabIndicator
:
Int
static
var
tabIndicatorAnimationDuration
:
Int
static
var
tabIndicatorColor
:
Int
static
var
tabIndicatorFullWidth
:
Int
static
var
tabIndicatorGravity
:
Int
static
var
tabIndicatorHeight
:
Int
static
var
tabInlineLabel
:
Int
static
var
tabMaxWidth
:
Int
static
var
tabMinWidth
:
Int
static
var
tabMode
:
Int
static
var
tabPadding
:
Int
static
var
tabPaddingBottom
:
Int
static
var
tabPaddingEnd
:
Int
static
var
tabPaddingStart
:
Int
static
var
tabPaddingTop
:
Int
static
var
tabRippleColor
:
Int
static
var
tabSelectedTextColor
:
Int
static
var
tabStyle
:
Int
static
var
tabTextAppearance
:
Int
static
var
tabTextColor
:
Int
static
var
tabUnboundedRipple
:
Int
static
var
textAllCaps
:
Int
static
var
textAppearanceBody1
:
Int
static
var
textAppearanceBody2
:
Int
static
var
textAppearanceButton
:
Int
static
var
textAppearanceCaption
:
Int
static
var
textAppearanceHeadline1
:
Int
static
var
textAppearanceHeadline2
:
Int
static
var
textAppearanceHeadline3
:
Int
static
var
textAppearanceHeadline4
:
Int
static
var
textAppearanceHeadline5
:
Int
static
var
textAppearanceHeadline6
:
Int
static
var
textAppearanceLargePopupMenu
:
Int
static
var
textAppearanceListItem
:
Int
static
var
textAppearanceListItemSecondary
:
Int
static
var
textAppearanceListItemSmall
:
Int
static
var
textAppearanceOverline
:
Int
static
var
textAppearancePopupMenuHeader
:
Int
static
var
textAppearanceSearchResultSubtitle
:
Int
static
var
textAppearanceSearchResultTitle
:
Int
static
var
textAppearanceSmallPopupMenu
:
Int
static
var
textAppearanceSubtitle1
:
Int
static
var
textAppearanceSubtitle2
:
Int
static
var
textColorAlertDialogListItem
:
Int
static
var
textColorSearchUrl
:
Int
static
var
textEndPadding
:
Int
static
var
textInputStyle
:
Int
static
var
textStartPadding
:
Int
static
var
theme
:
Int
static
var
thickness
:
Int
static
var
thumbTextPadding
:
Int
static
var
thumbTint
:
Int
static
var
thumbTintMode
:
Int
static
var
tickMark
:
Int
static
var
tickMarkTint
:
Int
static
var
tickMarkTintMode
:
Int
static
var
tint
:
Int
static
var
tintMode
:
Int
static
var
title
:
Int
static
var
titleEnabled
:
Int
static
var
titleMargin
:
Int
static
var
titleMarginBottom
:
Int
static
var
titleMarginEnd
:
Int
static
var
titleMarginStart
:
Int
static
var
titleMarginTop
:
Int
static
var
titleMargins
:
Int
static
var
titleTextAppearance
:
Int
static
var
titleTextColor
:
Int
static
var
titleTextStyle
:
Int
static
var
toolbarId
:
Int
static
var
toolbarNavigationButtonStyle
:
Int
static
var
toolbarStyle
:
Int
static
var
tooltipForegroundColor
:
Int
static
var
tooltipFrameBackground
:
Int
static
var
tooltipText
:
Int
static
var
track
:
Int
static
var
trackTint
:
Int
static
var
trackTintMode
:
Int
static
var
ttcIndex
:
Int
static
var
useCompatPadding
:
Int
static
var
viewInflaterClass
:
Int
static
var
voiceIcon
:
Int
static
var
windowActionBar
:
Int
static
var
windowActionBarOverlay
:
Int
static
var
windowActionModeOverlay
:
Int
static
var
windowFixedHeightMajor
:
Int
static
var
windowFixedHeightMinor
:
Int
static
var
windowFixedWidthMajor
:
Int
static
var
windowFixedWidthMinor
:
Int
static
var
windowMinWidthMajor
:
Int
static
var
windowMinWidthMinor
:
Int
static
var
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
var
abc_action_bar_embed_tabs
:
Int
static
var
abc_allow_stacked_button_bar
:
Int
static
var
abc_config_actionMenuItemAllCaps
:
Int
static
var
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
var
abc_background_cache_hint_selector_material_dark
:
Int
static
var
abc_background_cache_hint_selector_material_light
:
Int
static
var
abc_btn_colored_borderless_text_material
:
Int
static
var
abc_btn_colored_text_material
:
Int
static
var
abc_color_highlight_material
:
Int
static
var
abc_hint_foreground_material_dark
:
Int
static
var
abc_hint_foreground_material_light
:
Int
static
var
abc_input_method_navigation_guard
:
Int
static
var
abc_primary_text_disable_only_material_dark
:
Int
static
var
abc_primary_text_disable_only_material_light
:
Int
static
var
abc_primary_text_material_dark
:
Int
static
var
abc_primary_text_material_light
:
Int
static
var
abc_search_url_text
:
Int
static
var
abc_search_url_text_normal
:
Int
static
var
abc_search_url_text_pressed
:
Int
static
var
abc_search_url_text_selected
:
Int
static
var
abc_secondary_text_material_dark
:
Int
static
var
abc_secondary_text_material_light
:
Int
static
var
abc_tint_btn_checkable
:
Int
static
var
abc_tint_default
:
Int
static
var
abc_tint_edittext
:
Int
static
var
abc_tint_seek_thumb
:
Int
static
var
abc_tint_spinner
:
Int
static
var
abc_tint_switch_track
:
Int
static
var
accent_material_dark
:
Int
static
var
accent_material_light
:
Int
static
var
background_floating_material_dark
:
Int
static
var
background_floating_material_light
:
Int
static
var
background_material_dark
:
Int
static
var
background_material_light
:
Int
static
var
bright_foreground_disabled_material_dark
:
Int
static
var
bright_foreground_disabled_material_light
:
Int
static
var
bright_foreground_inverse_material_dark
:
Int
static
var
bright_foreground_inverse_material_light
:
Int
static
var
bright_foreground_material_dark
:
Int
static
var
bright_foreground_material_light
:
Int
static
var
button_material_dark
:
Int
static
var
button_material_light
:
Int
static
var
cardview_dark_background
:
Int
static
var
cardview_light_background
:
Int
static
var
cardview_shadow_end_color
:
Int
static
var
cardview_shadow_start_color
:
Int
static
var
design_bottom_navigation_shadow_color
:
Int
static
var
design_default_color_primary
:
Int
static
var
design_default_color_primary_dark
:
Int
static
var
design_error
:
Int
static
var
design_fab_shadow_end_color
:
Int
static
var
design_fab_shadow_mid_color
:
Int
static
var
design_fab_shadow_start_color
:
Int
static
var
design_fab_stroke_end_inner_color
:
Int
static
var
design_fab_stroke_end_outer_color
:
Int
static
var
design_fab_stroke_top_inner_color
:
Int
static
var
design_fab_stroke_top_outer_color
:
Int
static
var
design_snackbar_background_color
:
Int
static
var
design_tint_password_toggle
:
Int
static
var
dim_foreground_disabled_material_dark
:
Int
static
var
dim_foreground_disabled_material_light
:
Int
static
var
dim_foreground_material_dark
:
Int
static
var
dim_foreground_material_light
:
Int
static
var
errorForegroundColor
:
Int
static
var
error_color_material_dark
:
Int
static
var
error_color_material_light
:
Int
static
var
floatingActiveLabelColor
:
Int
static
var
floatingLabelColor
:
Int
static
var
foreground_material_dark
:
Int
static
var
foreground_material_light
:
Int
static
var
highlighted_text_material_dark
:
Int
static
var
highlighted_text_material_light
:
Int
static
var
hintColor
:
Int
static
var
material_blue_grey_800
:
Int
static
var
material_blue_grey_900
:
Int
static
var
material_blue_grey_950
:
Int
static
var
material_deep_teal_200
:
Int
static
var
material_deep_teal_500
:
Int
static
var
material_grey_100
:
Int
static
var
material_grey_300
:
Int
static
var
material_grey_50
:
Int
static
var
material_grey_600
:
Int
static
var
material_grey_800
:
Int
static
var
material_grey_850
:
Int
static
var
material_grey_900
:
Int
static
var
mtrl_bottom_nav_colored_item_tint
:
Int
static
var
mtrl_bottom_nav_item_tint
:
Int
static
var
mtrl_btn_bg_color_disabled
:
Int
static
var
mtrl_btn_bg_color_selector
:
Int
static
var
mtrl_btn_ripple_color
:
Int
static
var
mtrl_btn_stroke_color_selector
:
Int
static
var
mtrl_btn_text_btn_ripple_color
:
Int
static
var
mtrl_btn_text_color_disabled
:
Int
static
var
mtrl_btn_text_color_selector
:
Int
static
var
mtrl_btn_transparent_bg_color
:
Int
static
var
mtrl_chip_background_color
:
Int
static
var
mtrl_chip_close_icon_tint
:
Int
static
var
mtrl_chip_ripple_color
:
Int
static
var
mtrl_chip_text_color
:
Int
static
var
mtrl_fab_ripple_color
:
Int
static
var
mtrl_scrim_color
:
Int
static
var
mtrl_tabs_colored_ripple_color
:
Int
static
var
mtrl_tabs_icon_color_selector
:
Int
static
var
mtrl_tabs_icon_color_selector_colored
:
Int
static
var
mtrl_tabs_legacy_text_color_selector
:
Int
static
var
mtrl_tabs_ripple_color
:
Int
static
var
mtrl_text_btn_text_color_selector
:
Int
static
var
mtrl_textinput_default_box_stroke_color
:
Int
static
var
mtrl_textinput_disabled_color
:
Int
static
var
mtrl_textinput_filled_box_default_background_color
:
Int
static
var
mtrl_textinput_hovered_box_stroke_color
:
Int
static
var
notification_action_color_filter
:
Int
static
var
notification_icon_bg_color
:
Int
static
var
primaryActiveEditTextColor
:
Int
static
var
primaryEditTextColor
:
Int
static
var
primary_dark_material_dark
:
Int
static
var
primary_dark_material_light
:
Int
static
var
primary_material_dark
:
Int
static
var
primary_material_light
:
Int
static
var
primary_text_default_material_dark
:
Int
static
var
primary_text_default_material_light
:
Int
static
var
primary_text_disabled_material_dark
:
Int
static
var
primary_text_disabled_material_light
:
Int
static
var
ripple_material_dark
:
Int
static
var
ripple_material_light
:
Int
static
var
secondary_text_default_material_dark
:
Int
static
var
secondary_text_default_material_light
:
Int
static
var
secondary_text_disabled_material_dark
:
Int
static
var
secondary_text_disabled_material_light
:
Int
static
var
switch_thumb_disabled_material_dark
:
Int
static
var
switch_thumb_disabled_material_light
:
Int
static
var
switch_thumb_material_dark
:
Int
static
var
switch_thumb_material_light
:
Int
static
var
switch_thumb_normal_material_dark
:
Int
static
var
switch_thumb_normal_material_light
:
Int
static
var
tooltip_background_dark
:
Int
static
var
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
var
abc_action_bar_content_inset_material
:
Int
static
var
abc_action_bar_content_inset_with_nav
:
Int
static
var
abc_action_bar_default_height_material
:
Int
static
var
abc_action_bar_default_padding_end_material
:
Int
static
var
abc_action_bar_default_padding_start_material
:
Int
static
var
abc_action_bar_elevation_material
:
Int
static
var
abc_action_bar_icon_vertical_padding_material
:
Int
static
var
abc_action_bar_overflow_padding_end_material
:
Int
static
var
abc_action_bar_overflow_padding_start_material
:
Int
static
var
abc_action_bar_stacked_max_height
:
Int
static
var
abc_action_bar_stacked_tab_max_width
:
Int
static
var
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
var
abc_action_bar_subtitle_top_margin_material
:
Int
static
var
abc_action_button_min_height_material
:
Int
static
var
abc_action_button_min_width_material
:
Int
static
var
abc_action_button_min_width_overflow_material
:
Int
static
var
abc_alert_dialog_button_bar_height
:
Int
static
var
abc_alert_dialog_button_dimen
:
Int
static
var
abc_button_inset_horizontal_material
:
Int
static
var
abc_button_inset_vertical_material
:
Int
static
var
abc_button_padding_horizontal_material
:
Int
static
var
abc_button_padding_vertical_material
:
Int
static
var
abc_cascading_menus_min_smallest_width
:
Int
static
var
abc_config_prefDialogWidth
:
Int
static
var
abc_control_corner_material
:
Int
static
var
abc_control_inset_material
:
Int
static
var
abc_control_padding_material
:
Int
static
var
abc_dialog_corner_radius_material
:
Int
static
var
abc_dialog_fixed_height_major
:
Int
static
var
abc_dialog_fixed_height_minor
:
Int
static
var
abc_dialog_fixed_width_major
:
Int
static
var
abc_dialog_fixed_width_minor
:
Int
static
var
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
var
abc_dialog_list_padding_top_no_title
:
Int
static
var
abc_dialog_min_width_major
:
Int
static
var
abc_dialog_min_width_minor
:
Int
static
var
abc_dialog_padding_material
:
Int
static
var
abc_dialog_padding_top_material
:
Int
static
var
abc_dialog_title_divider_material
:
Int
static
var
abc_disabled_alpha_material_dark
:
Int
static
var
abc_disabled_alpha_material_light
:
Int
static
var
abc_dropdownitem_icon_width
:
Int
static
var
abc_dropdownitem_text_padding_left
:
Int
static
var
abc_dropdownitem_text_padding_right
:
Int
static
var
abc_edit_text_inset_bottom_material
:
Int
static
var
abc_edit_text_inset_horizontal_material
:
Int
static
var
abc_edit_text_inset_top_material
:
Int
static
var
abc_floating_window_z
:
Int
static
var
abc_list_item_padding_horizontal_material
:
Int
static
var
abc_panel_menu_list_width
:
Int
static
var
abc_progress_bar_height_material
:
Int
static
var
abc_search_view_preferred_height
:
Int
static
var
abc_search_view_preferred_width
:
Int
static
var
abc_seekbar_track_background_height_material
:
Int
static
var
abc_seekbar_track_progress_height_material
:
Int
static
var
abc_select_dialog_padding_start_material
:
Int
static
var
abc_switch_padding
:
Int
static
var
abc_text_size_body_1_material
:
Int
static
var
abc_text_size_body_2_material
:
Int
static
var
abc_text_size_button_material
:
Int
static
var
abc_text_size_caption_material
:
Int
static
var
abc_text_size_display_1_material
:
Int
static
var
abc_text_size_display_2_material
:
Int
static
var
abc_text_size_display_3_material
:
Int
static
var
abc_text_size_display_4_material
:
Int
static
var
abc_text_size_headline_material
:
Int
static
var
abc_text_size_large_material
:
Int
static
var
abc_text_size_medium_material
:
Int
static
var
abc_text_size_menu_header_material
:
Int
static
var
abc_text_size_menu_material
:
Int
static
var
abc_text_size_small_material
:
Int
static
var
abc_text_size_subhead_material
:
Int
static
var
abc_text_size_subtitle_material_toolbar
:
Int
static
var
abc_text_size_title_material
:
Int
static
var
abc_text_size_title_material_toolbar
:
Int
static
var
add_card_expiry_middle_margin
:
Int
static
var
cardview_compat_inset_shadow
:
Int
static
var
cardview_default_elevation
:
Int
static
var
cardview_default_radius
:
Int
static
var
compat_button_inset_horizontal_material
:
Int
static
var
compat_button_inset_vertical_material
:
Int
static
var
compat_button_padding_horizontal_material
:
Int
static
var
compat_button_padding_vertical_material
:
Int
static
var
compat_control_corner_material
:
Int
static
var
compat_notification_large_icon_max_height
:
Int
static
var
compat_notification_large_icon_max_width
:
Int
static
var
design_appbar_elevation
:
Int
static
var
design_bottom_navigation_active_item_max_width
:
Int
static
var
design_bottom_navigation_active_item_min_width
:
Int
static
var
design_bottom_navigation_active_text_size
:
Int
static
var
design_bottom_navigation_elevation
:
Int
static
var
design_bottom_navigation_height
:
Int
static
var
design_bottom_navigation_icon_size
:
Int
static
var
design_bottom_navigation_item_max_width
:
Int
static
var
design_bottom_navigation_item_min_width
:
Int
static
var
design_bottom_navigation_margin
:
Int
static
var
design_bottom_navigation_shadow_height
:
Int
static
var
design_bottom_navigation_text_size
:
Int
static
var
design_bottom_sheet_modal_elevation
:
Int
static
var
design_bottom_sheet_peek_height_min
:
Int
static
var
design_fab_border_width
:
Int
static
var
design_fab_elevation
:
Int
static
var
design_fab_image_size
:
Int
static
var
design_fab_size_mini
:
Int
static
var
design_fab_size_normal
:
Int
static
var
design_fab_translation_z_hovered_focused
:
Int
static
var
design_fab_translation_z_pressed
:
Int
static
var
design_navigation_elevation
:
Int
static
var
design_navigation_icon_padding
:
Int
static
var
design_navigation_icon_size
:
Int
static
var
design_navigation_item_horizontal_padding
:
Int
static
var
design_navigation_item_icon_padding
:
Int
static
var
design_navigation_max_width
:
Int
static
var
design_navigation_padding_bottom
:
Int
static
var
design_navigation_separator_vertical_padding
:
Int
static
var
design_snackbar_action_inline_max_width
:
Int
static
var
design_snackbar_background_corner_radius
:
Int
static
var
design_snackbar_elevation
:
Int
static
var
design_snackbar_extra_spacing_horizontal
:
Int
static
var
design_snackbar_max_width
:
Int
static
var
design_snackbar_min_width
:
Int
static
var
design_snackbar_padding_horizontal
:
Int
static
var
design_snackbar_padding_vertical
:
Int
static
var
design_snackbar_padding_vertical_2lines
:
Int
static
var
design_snackbar_text_size
:
Int
static
var
design_tab_max_width
:
Int
static
var
design_tab_scrollable_min_width
:
Int
static
var
design_tab_text_size
:
Int
static
var
design_tab_text_size_2line
:
Int
static
var
design_textinput_caption_translate_y
:
Int
static
var
disabled_alpha_material_dark
:
Int
static
var
disabled_alpha_material_light
:
Int
static
var
fab_margin
:
Int
static
var
fastscroll_default_thickness
:
Int
static
var
fastscroll_margin
:
Int
static
var
fastscroll_minimum_range
:
Int
static
var
highlight_alpha_material_colored
:
Int
static
var
highlight_alpha_material_dark
:
Int
static
var
highlight_alpha_material_light
:
Int
static
var
hint_alpha_material_dark
:
Int
static
var
hint_alpha_material_light
:
Int
static
var
hint_pressed_alpha_material_dark
:
Int
static
var
hint_pressed_alpha_material_light
:
Int
static
var
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
var
item_touch_helper_swipe_escape_max_velocity
:
Int
static
var
item_touch_helper_swipe_escape_velocity
:
Int
static
var
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
var
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
var
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
var
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
var
mtrl_bottomappbar_height
:
Int
static
var
mtrl_btn_corner_radius
:
Int
static
var
mtrl_btn_dialog_btn_min_width
:
Int
static
var
mtrl_btn_disabled_elevation
:
Int
static
var
mtrl_btn_disabled_z
:
Int
static
var
mtrl_btn_elevation
:
Int
static
var
mtrl_btn_focused_z
:
Int
static
var
mtrl_btn_hovered_z
:
Int
static
var
mtrl_btn_icon_btn_padding_left
:
Int
static
var
mtrl_btn_icon_padding
:
Int
static
var
mtrl_btn_inset
:
Int
static
var
mtrl_btn_letter_spacing
:
Int
static
var
mtrl_btn_padding_bottom
:
Int
static
var
mtrl_btn_padding_left
:
Int
static
var
mtrl_btn_padding_right
:
Int
static
var
mtrl_btn_padding_top
:
Int
static
var
mtrl_btn_pressed_z
:
Int
static
var
mtrl_btn_stroke_size
:
Int
static
var
mtrl_btn_text_btn_icon_padding
:
Int
static
var
mtrl_btn_text_btn_padding_left
:
Int
static
var
mtrl_btn_text_btn_padding_right
:
Int
static
var
mtrl_btn_text_size
:
Int
static
var
mtrl_btn_z
:
Int
static
var
mtrl_card_elevation
:
Int
static
var
mtrl_card_spacing
:
Int
static
var
mtrl_chip_pressed_translation_z
:
Int
static
var
mtrl_chip_text_size
:
Int
static
var
mtrl_fab_elevation
:
Int
static
var
mtrl_fab_translation_z_hovered_focused
:
Int
static
var
mtrl_fab_translation_z_pressed
:
Int
static
var
mtrl_navigation_elevation
:
Int
static
var
mtrl_navigation_item_horizontal_padding
:
Int
static
var
mtrl_navigation_item_icon_padding
:
Int
static
var
mtrl_snackbar_background_corner_radius
:
Int
static
var
mtrl_snackbar_margin
:
Int
static
var
mtrl_textinput_box_bottom_offset
:
Int
static
var
mtrl_textinput_box_corner_radius_medium
:
Int
static
var
mtrl_textinput_box_corner_radius_small
:
Int
static
var
mtrl_textinput_box_label_cutout_padding
:
Int
static
var
mtrl_textinput_box_padding_end
:
Int
static
var
mtrl_textinput_box_stroke_width_default
:
Int
static
var
mtrl_textinput_box_stroke_width_focused
:
Int
static
var
mtrl_textinput_outline_box_expanded_padding
:
Int
static
var
mtrl_toolbar_default_height
:
Int
static
var
notification_action_icon_size
:
Int
static
var
notification_action_text_size
:
Int
static
var
notification_big_circle_margin
:
Int
static
var
notification_content_margin_start
:
Int
static
var
notification_large_icon_height
:
Int
static
var
notification_large_icon_width
:
Int
static
var
notification_main_column_padding_top
:
Int
static
var
notification_media_narrow_margin
:
Int
static
var
notification_right_icon_size
:
Int
static
var
notification_right_side_padding_top
:
Int
static
var
notification_small_icon_background_padding
:
Int
static
var
notification_small_icon_size_as_large
:
Int
static
var
notification_subtext_size
:
Int
static
var
notification_top_pad
:
Int
static
var
notification_top_pad_large_text
:
Int
static
var
tooltip_corner_radius
:
Int
static
var
tooltip_horizontal_padding
:
Int
static
var
tooltip_margin
:
Int
static
var
tooltip_precise_anchor_extra_offset
:
Int
static
var
tooltip_precise_anchor_threshold
:
Int
static
var
tooltip_vertical_padding
:
Int
static
var
tooltip_y_offset_non_touch
:
Int
static
var
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
var
abc_ab_share_pack_mtrl_alpha
:
Int
static
var
abc_action_bar_item_background_material
:
Int
static
var
abc_btn_borderless_material
:
Int
static
var
abc_btn_check_material
:
Int
static
var
abc_btn_check_to_on_mtrl_000
:
Int
static
var
abc_btn_check_to_on_mtrl_015
:
Int
static
var
abc_btn_colored_material
:
Int
static
var
abc_btn_default_mtrl_shape
:
Int
static
var
abc_btn_radio_material
:
Int
static
var
abc_btn_radio_to_on_mtrl_000
:
Int
static
var
abc_btn_radio_to_on_mtrl_015
:
Int
static
var
abc_btn_switch_to_on_mtrl_00001
:
Int
static
var
abc_btn_switch_to_on_mtrl_00012
:
Int
static
var
abc_cab_background_internal_bg
:
Int
static
var
abc_cab_background_top_material
:
Int
static
var
abc_cab_background_top_mtrl_alpha
:
Int
static
var
abc_control_background_material
:
Int
static
var
abc_dialog_material_background
:
Int
static
var
abc_edit_text_material
:
Int
static
var
abc_ic_ab_back_material
:
Int
static
var
abc_ic_arrow_drop_right_black_24dp
:
Int
static
var
abc_ic_clear_material
:
Int
static
var
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
var
abc_ic_go_search_api_material
:
Int
static
var
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_cut_mtrl_alpha
:
Int
static
var
abc_ic_menu_overflow_material
:
Int
static
var
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
var
abc_ic_menu_share_mtrl_alpha
:
Int
static
var
abc_ic_search_api_material
:
Int
static
var
abc_ic_star_black_16dp
:
Int
static
var
abc_ic_star_black_36dp
:
Int
static
var
abc_ic_star_black_48dp
:
Int
static
var
abc_ic_star_half_black_16dp
:
Int
static
var
abc_ic_star_half_black_36dp
:
Int
static
var
abc_ic_star_half_black_48dp
:
Int
static
var
abc_ic_voice_search_api_material
:
Int
static
var
abc_item_background_holo_dark
:
Int
static
var
abc_item_background_holo_light
:
Int
static
var
abc_list_divider_material
:
Int
static
var
abc_list_divider_mtrl_alpha
:
Int
static
var
abc_list_focused_holo
:
Int
static
var
abc_list_longpressed_holo
:
Int
static
var
abc_list_pressed_holo_dark
:
Int
static
var
abc_list_pressed_holo_light
:
Int
static
var
abc_list_selector_background_transition_holo_dark
:
Int
static
var
abc_list_selector_background_transition_holo_light
:
Int
static
var
abc_list_selector_disabled_holo_dark
:
Int
static
var
abc_list_selector_disabled_holo_light
:
Int
static
var
abc_list_selector_holo_dark
:
Int
static
var
abc_list_selector_holo_light
:
Int
static
var
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
var
abc_popup_background_mtrl_mult
:
Int
static
var
abc_ratingbar_indicator_material
:
Int
static
var
abc_ratingbar_material
:
Int
static
var
abc_ratingbar_small_material
:
Int
static
var
abc_scrubber_control_off_mtrl_alpha
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
var
abc_scrubber_primary_mtrl_alpha
:
Int
static
var
abc_scrubber_track_mtrl_alpha
:
Int
static
var
abc_seekbar_thumb_material
:
Int
static
var
abc_seekbar_tick_mark_material
:
Int
static
var
abc_seekbar_track_material
:
Int
static
var
abc_spinner_mtrl_am_alpha
:
Int
static
var
abc_spinner_textfield_background_material
:
Int
static
var
abc_switch_thumb_material
:
Int
static
var
abc_switch_track_mtrl_alpha
:
Int
static
var
abc_tab_indicator_material
:
Int
static
var
abc_tab_indicator_mtrl_alpha
:
Int
static
var
abc_text_cursor_material
:
Int
static
var
abc_text_select_handle_left_mtrl_dark
:
Int
static
var
abc_text_select_handle_left_mtrl_light
:
Int
static
var
abc_text_select_handle_middle_mtrl_dark
:
Int
static
var
abc_text_select_handle_middle_mtrl_light
:
Int
static
var
abc_text_select_handle_right_mtrl_dark
:
Int
static
var
abc_text_select_handle_right_mtrl_light
:
Int
static
var
abc_textfield_activated_mtrl_alpha
:
Int
static
var
abc_textfield_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_activated_mtrl_alpha
:
Int
static
var
abc_textfield_search_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_material
:
Int
static
var
abc_vector_test
:
Int
static
var
american_express
:
Int
static
var
avd_hide_password
:
Int
static
var
avd_show_password
:
Int
static
var
card
:
Int
static
var
cvc
:
Int
static
var
design_bottom_navigation_item_background
:
Int
static
var
design_fab_background
:
Int
static
var
design_ic_visibility
:
Int
static
var
design_ic_visibility_off
:
Int
static
var
design_password_eye
:
Int
static
var
design_snackbar_background
:
Int
static
var
dinners_club
:
Int
static
var
edit_text_color
:
Int
static
var
expiry_date
:
Int
static
var
ic_mtrl_chip_checked_black
:
Int
static
var
ic_mtrl_chip_checked_circle
:
Int
static
var
ic_mtrl_chip_close_circle
:
Int
static
var
mastercard
:
Int
static
var
mtrl_snackbar_background
:
Int
static
var
mtrl_tabs_default_indicator
:
Int
static
var
navigation_empty_icon
:
Int
static
var
notification_action_background
:
Int
static
var
notification_bg
:
Int
static
var
notification_bg_low
:
Int
static
var
notification_bg_low_normal
:
Int
static
var
notification_bg_low_pressed
:
Int
static
var
notification_bg_normal
:
Int
static
var
notification_bg_normal_pressed
:
Int
static
var
notification_icon_background
:
Int
static
var
notification_template_icon_bg
:
Int
static
var
notification_template_icon_low_bg
:
Int
static
var
notification_tile_bg
:
Int
static
var
notify_panel_notification_icon_bg
:
Int
static
var
tooltip_frame_dark
:
Int
static
var
tooltip_frame_light
:
Int
static
var
visa
:
Int
class
id
Module Contents
id
(
)
static
var
action_bar
:
Int
static
var
action_bar_activity_content
:
Int
static
var
action_bar_container
:
Int
static
var
action_bar_root
:
Int
static
var
action_bar_spinner
:
Int
static
var
action_bar_subtitle
:
Int
static
var
action_bar_title
:
Int
static
var
action_container
:
Int
static
var
action_context_bar
:
Int
static
var
action_divider
:
Int
static
var
action_image
:
Int
static
var
action_menu_divider
:
Int
static
var
action_menu_presenter
:
Int
static
var
action_mode_bar
:
Int
static
var
action_mode_bar_stub
:
Int
static
var
action_mode_close_button
:
Int
static
var
action_text
:
Int
static
var
actions
:
Int
static
var
activity_chooser_view_content
:
Int
static
var
add
:
Int
static
var
alertTitle
:
Int
static
var
async
:
Int
static
var
auto
:
Int
static
var
barrier
:
Int
static
var
blocking
:
Int
static
var
bottom
:
Int
static
var
buttonPanel
:
Int
static
var
center
:
Int
static
var
chains
:
Int
static
var
checkbox
:
Int
static
var
chronometer
:
Int
static
var
container
:
Int
static
var
content
:
Int
static
var
contentPanel
:
Int
static
var
coordinator
:
Int
static
var
custom
:
Int
static
var
customPanel
:
Int
static
var
decor_content_parent
:
Int
static
var
default_activity_button
:
Int
static
var
design_bottom_sheet
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_menu_item_action_area_stub
:
Int
static
var
design_menu_item_text
:
Int
static
var
design_navigation_view
:
Int
static
var
dimensions
:
Int
static
var
direct
:
Int
static
var
edit_query
:
Int
static
var
edit_text_card_number
:
Int
static
var
edit_text_expiry_date
:
Int
static
var
edit_text_security_code
:
Int
static
var
end
:
Int
static
var
expand_activities_button
:
Int
static
var
expanded_menu
:
Int
static
var
fill
:
Int
static
var
filled
:
Int
static
var
fixed
:
Int
static
var
forever
:
Int
static
var
ghost_view
:
Int
static
var
gone
:
Int
static
var
group_divider
:
Int
static
var
home
:
Int
static
var
icon
:
Int
static
var
icon_group
:
Int
static
var
image
:
Int
static
var
info
:
Int
static
var
invisible
:
Int
static
var
italic
:
Int
static
var
item_touch_helper_previous_elevation
:
Int
static
var
labeled
:
Int
static
var
largeLabel
:
Int
static
var
left
:
Int
static
var
line1
:
Int
static
var
line3
:
Int
static
var
listMode
:
Int
static
var
list_item
:
Int
static
var
masked
:
Int
static
var
message
:
Int
static
var
mini
:
Int
static
var
mtrl_child_content_container
:
Int
static
var
mtrl_internal_children_alpha_tag
:
Int
static
var
multiply
:
Int
static
var
navigation_header_container
:
Int
static
var
none
:
Int
static
var
normal
:
Int
static
var
notification_background
:
Int
static
var
notification_main_column
:
Int
static
var
notification_main_column_container
:
Int
static
var
outline
:
Int
static
var
packed
:
Int
static
var
parallax
:
Int
static
var
parent
:
Int
static
var
parentPanel
:
Int
static
var
parent_matrix
:
Int
static
var
percent
:
Int
static
var
pin
:
Int
static
var
progress_circular
:
Int
static
var
progress_horizontal
:
Int
static
var
radio
:
Int
static
var
right
:
Int
static
var
right_icon
:
Int
static
var
right_side
:
Int
static
var
save_image_matrix
:
Int
static
var
save_non_transition_alpha
:
Int
static
var
save_scale_type
:
Int
static
var
screen
:
Int
static
var
scrollIndicatorDown
:
Int
static
var
scrollIndicatorUp
:
Int
static
var
scrollView
:
Int
static
var
scrollable
:
Int
static
var
search_badge
:
Int
static
var
search_bar
:
Int
static
var
search_button
:
Int
static
var
search_close_btn
:
Int
static
var
search_edit_frame
:
Int
static
var
search_go_btn
:
Int
static
var
search_mag_icon
:
Int
static
var
search_plate
:
Int
static
var
search_src_text
:
Int
static
var
search_voice_btn
:
Int
static
var
second_row_layout
:
Int
static
var
select_dialog_listview
:
Int
static
var
selected
:
Int
static
var
shortcut
:
Int
static
var
smallLabel
:
Int
static
var
snackbar_action
:
Int
static
var
snackbar_text
:
Int
static
var
spacer
:
Int
static
var
split_action_bar
:
Int
static
var
spread
:
Int
static
var
spread_inside
:
Int
static
var
src_atop
:
Int
static
var
src_in
:
Int
static
var
src_over
:
Int
static
var
standard
:
Int
static
var
start
:
Int
static
var
stretch
:
Int
static
var
submenuarrow
:
Int
static
var
submit_area
:
Int
static
var
tabMode
:
Int
static
var
tag_transition_group
:
Int
static
var
tag_unhandled_key_event_manager
:
Int
static
var
tag_unhandled_key_listeners
:
Int
static
var
text
:
Int
static
var
text2
:
Int
static
var
textSpacerNoButtons
:
Int
static
var
textSpacerNoTitle
:
Int
static
var
text_input_password_toggle
:
Int
static
var
text_layout_card_number
:
Int
static
var
text_layout_expiry_date
:
Int
static
var
text_layout_security_code
:
Int
static
var
textinput_counter
:
Int
static
var
textinput_error
:
Int
static
var
textinput_helper_text
:
Int
static
var
time
:
Int
static
var
title
:
Int
static
var
titleDividerNoCustom
:
Int
static
var
title_template
:
Int
static
var
top
:
Int
static
var
topPanel
:
Int
static
var
touch_outside
:
Int
static
var
transition_current_scene
:
Int
static
var
transition_layout_save
:
Int
static
var
transition_position
:
Int
static
var
transition_scene_layoutid_cache
:
Int
static
var
transition_transform
:
Int
static
var
uniform
:
Int
static
var
unlabeled
:
Int
static
var
up
:
Int
static
var
view_offset_helper
:
Int
static
var
visible
:
Int
static
var
wrap
:
Int
static
var
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
var
abc_config_activityDefaultDur
:
Int
static
var
abc_config_activityShortDur
:
Int
static
var
app_bar_elevation_anim_duration
:
Int
static
var
bottom_sheet_slide_duration
:
Int
static
var
cancel_button_image_alpha
:
Int
static
var
config_tooltipAnimTime
:
Int
static
var
design_snackbar_text_max_lines
:
Int
static
var
design_tab_indicator_anim_duration_ms
:
Int
static
var
hide_password_duration
:
Int
static
var
mtrl_btn_anim_delay_ms
:
Int
static
var
mtrl_btn_anim_duration_ms
:
Int
static
var
mtrl_chip_anim_duration
:
Int
static
var
mtrl_tab_indicator_anim_duration_ms
:
Int
static
var
show_password_duration
:
Int
static
var
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
var
mtrl_fast_out_linear_in
:
Int
static
var
mtrl_fast_out_slow_in
:
Int
static
var
mtrl_linear
:
Int
static
var
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
var
abc_action_bar_title_item
:
Int
static
var
abc_action_bar_up_container
:
Int
static
var
abc_action_menu_item_layout
:
Int
static
var
abc_action_menu_layout
:
Int
static
var
abc_action_mode_bar
:
Int
static
var
abc_action_mode_close_item_material
:
Int
static
var
abc_activity_chooser_view
:
Int
static
var
abc_activity_chooser_view_list_item
:
Int
static
var
abc_alert_dialog_button_bar_material
:
Int
static
var
abc_alert_dialog_material
:
Int
static
var
abc_alert_dialog_title_material
:
Int
static
var
abc_cascading_menu_item_layout
:
Int
static
var
abc_dialog_title_material
:
Int
static
var
abc_expanded_menu_layout
:
Int
static
var
abc_list_menu_item_checkbox
:
Int
static
var
abc_list_menu_item_icon
:
Int
static
var
abc_list_menu_item_layout
:
Int
static
var
abc_list_menu_item_radio
:
Int
static
var
abc_popup_menu_header_item_layout
:
Int
static
var
abc_popup_menu_item_layout
:
Int
static
var
abc_screen_content_include
:
Int
static
var
abc_screen_simple
:
Int
static
var
abc_screen_simple_overlay_action_mode
:
Int
static
var
abc_screen_toolbar
:
Int
static
var
abc_search_dropdown_item_icons_2line
:
Int
static
var
abc_search_view
:
Int
static
var
abc_select_dialog_material
:
Int
static
var
abc_tooltip
:
Int
static
var
add_card_widget
:
Int
static
var
design_bottom_navigation_item
:
Int
static
var
design_bottom_sheet_dialog
:
Int
static
var
design_layout_snackbar
:
Int
static
var
design_layout_snackbar_include
:
Int
static
var
design_layout_tab_icon
:
Int
static
var
design_layout_tab_text
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_navigation_item
:
Int
static
var
design_navigation_item_header
:
Int
static
var
design_navigation_item_separator
:
Int
static
var
design_navigation_item_subheader
:
Int
static
var
design_navigation_menu
:
Int
static
var
design_navigation_menu_item
:
Int
static
var
design_text_input_password_icon
:
Int
static
var
mtrl_layout_snackbar
:
Int
static
var
mtrl_layout_snackbar_include
:
Int
static
var
notification_action
:
Int
static
var
notification_action_tombstone
:
Int
static
var
notification_template_custom_big
:
Int
static
var
notification_template_icon_group
:
Int
static
var
notification_template_part_chronometer
:
Int
static
var
notification_template_part_time
:
Int
static
var
select_dialog_item_material
:
Int
static
var
select_dialog_multichoice_material
:
Int
static
var
select_dialog_singlechoice_material
:
Int
static
var
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
string
(
)
static
var
abc_action_bar_home_description
:
Int
static
var
abc_action_bar_up_description
:
Int
static
var
abc_action_menu_overflow_description
:
Int
static
var
abc_action_mode_done
:
Int
static
var
abc_activity_chooser_view_see_all
:
Int
static
var
abc_activitychooserview_choose_application
:
Int
static
var
abc_capital_off
:
Int
static
var
abc_capital_on
:
Int
static
var
abc_font_family_body_1_material
:
Int
static
var
abc_font_family_body_2_material
:
Int
static
var
abc_font_family_button_material
:
Int
static
var
abc_font_family_caption_material
:
Int
static
var
abc_font_family_display_1_material
:
Int
static
var
abc_font_family_display_2_material
:
Int
static
var
abc_font_family_display_3_material
:
Int
static
var
abc_font_family_display_4_material
:
Int
static
var
abc_font_family_headline_material
:
Int
static
var
abc_font_family_menu_material
:
Int
static
var
abc_font_family_subhead_material
:
Int
static
var
abc_font_family_title_material
:
Int
static
var
abc_menu_alt_shortcut_label
:
Int
static
var
abc_menu_ctrl_shortcut_label
:
Int
static
var
abc_menu_delete_shortcut_label
:
Int
static
var
abc_menu_enter_shortcut_label
:
Int
static
var
abc_menu_function_shortcut_label
:
Int
static
var
abc_menu_meta_shortcut_label
:
Int
static
var
abc_menu_shift_shortcut_label
:
Int
static
var
abc_menu_space_shortcut_label
:
Int
static
var
abc_menu_sym_shortcut_label
:
Int
static
var
abc_prepend_shortcut_label
:
Int
static
var
abc_search_hint
:
Int
static
var
abc_searchview_description_clear
:
Int
static
var
abc_searchview_description_query
:
Int
static
var
abc_searchview_description_search
:
Int
static
var
abc_searchview_description_submit
:
Int
static
var
abc_searchview_description_voice
:
Int
static
var
abc_shareactionprovider_share_with
:
Int
static
var
abc_shareactionprovider_share_with_application
:
Int
static
var
abc_toolbar_collapse_description
:
Int
static
var
app_name
:
Int
static
var
appbar_scrolling_view_behavior
:
Int
static
var
bottom_sheet_behavior
:
Int
static
var
card_number_hint
:
Int
static
var
character_counter_content_description
:
Int
static
var
character_counter_pattern
:
Int
static
var
error_card_number
:
Int
static
var
error_expiry_date
:
Int
static
var
error_security_code
:
Int
static
var
expiry_date_hint
:
Int
static
var
fab_transformation_scrim_behavior
:
Int
static
var
fab_transformation_sheet_behavior
:
Int
static
var
hide_bottom_view_on_scroll_behavior
:
Int
static
var
label_card_number
:
Int
static
var
label_expiry_date
:
Int
static
var
label_security_code
:
Int
static
var
mtrl_chip_close_icon_content_description
:
Int
static
var
password_toggle_content_description
:
Int
static
var
path_password_eye
:
Int
static
var
path_password_eye_mask_strike_through
:
Int
static
var
path_password_eye_mask_visible
:
Int
static
var
path_password_strike_through
:
Int
static
var
search_menu_title
:
Int
static
var
security_code_hint_3
:
Int
static
var
security_code_hint_4
:
Int
static
var
status_bar_notification_info_overflow
:
Int
static
var
title_activity_add_card
:
Int
static
var
valid_digits
:
Int
class
style
Module Contents
style
(
)
static
var
AlertDialog_AppCompat
:
Int
static
var
AlertDialog_AppCompat_Light
:
Int
static
var
Animation_AppCompat_Dialog
:
Int
static
var
Animation_AppCompat_DropDownUp
:
Int
static
var
Animation_AppCompat_Tooltip
:
Int
static
var
Animation_Design_BottomSheetDialog
:
Int
static
var
AppTheme
:
Int
static
var
AppTheme_AppBarOverlay
:
Int
static
var
AppTheme_NoActionBar
:
Int
static
var
AppTheme_PopupOverlay
:
Int
static
var
Base_AlertDialog_AppCompat
:
Int
static
var
Base_AlertDialog_AppCompat_Light
:
Int
static
var
Base_Animation_AppCompat_Dialog
:
Int
static
var
Base_Animation_AppCompat_DropDownUp
:
Int
static
var
Base_Animation_AppCompat_Tooltip
:
Int
static
var
Base_CardView
:
Int
static
var
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
var
Base_DialogWindowTitle_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat_Body1
:
Int
static
var
Base_TextAppearance_AppCompat_Body2
:
Int
static
var
Base_TextAppearance_AppCompat_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Caption
:
Int
static
var
Base_TextAppearance_AppCompat_Display1
:
Int
static
var
Base_TextAppearance_AppCompat_Display2
:
Int
static
var
Base_TextAppearance_AppCompat_Display3
:
Int
static
var
Base_TextAppearance_AppCompat_Display4
:
Int
static
var
Base_TextAppearance_AppCompat_Headline
:
Int
static
var
Base_TextAppearance_AppCompat_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Medium
:
Int
static
var
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
Base_ThemeOverlay_AppCompat
:
Int
static
var
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
Base_ThemeOverlay_AppCompat_Light
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat
:
Int
static
var
Base_Theme_AppCompat_CompactMenu
:
Int
static
var
Base_Theme_AppCompat_Dialog
:
Int
static
var
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Base_Theme_AppCompat_Light
:
Int
static
var
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents
:
Int
static
var
Base_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
var
Base_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents_Light
:
Int
static
var
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_V14_Theme_MaterialComponents
:
Int
static
var
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat
:
Int
static
var
Base_V21_Theme_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat_Light
:
Int
static
var
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V22_Theme_AppCompat
:
Int
static
var
Base_V22_Theme_AppCompat_Light
:
Int
static
var
Base_V23_Theme_AppCompat
:
Int
static
var
Base_V23_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Theme_AppCompat
:
Int
static
var
Base_V26_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
var
Base_V28_Theme_AppCompat
:
Int
static
var
Base_V28_Theme_AppCompat_Light
:
Int
static
var
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat
:
Int
static
var
Base_V7_Theme_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat_Light
:
Int
static
var
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_V7_Widget_AppCompat_EditText
:
Int
static
var
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_ActionBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_ActionButton
:
Int
static
var
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Base_Widget_AppCompat_ActionMode
:
Int
static
var
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
var
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_Widget_AppCompat_Button
:
Int
static
var
Base_Widget_AppCompat_ButtonBar
:
Int
static
var
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_Small
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
var
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Base_Widget_AppCompat_EditText
:
Int
static
var
Base_Widget_AppCompat_ImageButton
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_ListMenuView
:
Int
static
var
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
var
Base_Widget_AppCompat_ListView
:
Int
static
var
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
var
Base_Widget_AppCompat_ListView_Menu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_PopupWindow
:
Int
static
var
Base_Widget_AppCompat_ProgressBar
:
Int
static
var
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Base_Widget_AppCompat_RatingBar
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
var
Base_Widget_AppCompat_SearchView
:
Int
static
var
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Base_Widget_AppCompat_Spinner
:
Int
static
var
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Base_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Base_Widget_Design_TabLayout
:
Int
static
var
Base_Widget_MaterialComponents_Chip
:
Int
static
var
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
var
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
var
CardView
:
Int
static
var
CardView_Dark
:
Int
static
var
CardView_Light
:
Int
static
var
PHEditTextStyle
:
Int
static
var
PHErrorAppearanceStyle
:
Int
static
var
PHTextInputLayoutStyle
:
Int
static
var
Platform_AppCompat
:
Int
static
var
Platform_AppCompat_Light
:
Int
static
var
Platform_MaterialComponents
:
Int
static
var
Platform_MaterialComponents_Dialog
:
Int
static
var
Platform_MaterialComponents_Light
:
Int
static
var
Platform_MaterialComponents_Light_Dialog
:
Int
static
var
Platform_ThemeOverlay_AppCompat
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
var
Platform_V21_AppCompat
:
Int
static
var
Platform_V21_AppCompat_Light
:
Int
static
var
Platform_V25_AppCompat
:
Int
static
var
Platform_V25_AppCompat_Light
:
Int
static
var
Platform_Widget_AppCompat_Spinner
:
Int
static
var
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
var
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
var
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
TextAppearance_AppCompat
:
Int
static
var
TextAppearance_AppCompat_Body1
:
Int
static
var
TextAppearance_AppCompat_Body2
:
Int
static
var
TextAppearance_AppCompat_Button
:
Int
static
var
TextAppearance_AppCompat_Caption
:
Int
static
var
TextAppearance_AppCompat_Display1
:
Int
static
var
TextAppearance_AppCompat_Display2
:
Int
static
var
TextAppearance_AppCompat_Display3
:
Int
static
var
TextAppearance_AppCompat_Display4
:
Int
static
var
TextAppearance_AppCompat_Headline
:
Int
static
var
TextAppearance_AppCompat_Inverse
:
Int
static
var
TextAppearance_AppCompat_Large
:
Int
static
var
TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Medium
:
Int
static
var
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
TextAppearance_AppCompat_Menu
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Small
:
Int
static
var
TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
TextAppearance_AppCompat_Subhead
:
Int
static
var
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
TextAppearance_AppCompat_Title
:
Int
static
var
TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Tooltip
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_Button
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
TextAppearance_Compat_Notification
:
Int
static
var
TextAppearance_Compat_Notification_Info
:
Int
static
var
TextAppearance_Compat_Notification_Line2
:
Int
static
var
TextAppearance_Compat_Notification_Time
:
Int
static
var
TextAppearance_Compat_Notification_Title
:
Int
static
var
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
var
TextAppearance_Design_Counter
:
Int
static
var
TextAppearance_Design_Counter_Overflow
:
Int
static
var
TextAppearance_Design_Error
:
Int
static
var
TextAppearance_Design_HelperText
:
Int
static
var
TextAppearance_Design_Hint
:
Int
static
var
TextAppearance_Design_Snackbar_Message
:
Int
static
var
TextAppearance_Design_Tab
:
Int
static
var
TextAppearance_MaterialComponents_Body1
:
Int
static
var
TextAppearance_MaterialComponents_Body2
:
Int
static
var
TextAppearance_MaterialComponents_Button
:
Int
static
var
TextAppearance_MaterialComponents_Caption
:
Int
static
var
TextAppearance_MaterialComponents_Chip
:
Int
static
var
TextAppearance_MaterialComponents_Headline1
:
Int
static
var
TextAppearance_MaterialComponents_Headline2
:
Int
static
var
TextAppearance_MaterialComponents_Headline3
:
Int
static
var
TextAppearance_MaterialComponents_Headline4
:
Int
static
var
TextAppearance_MaterialComponents_Headline5
:
Int
static
var
TextAppearance_MaterialComponents_Headline6
:
Int
static
var
TextAppearance_MaterialComponents_Overline
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
var
TextAppearance_MaterialComponents_Tab
:
Int
static
var
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
ThemeOverlay_AppCompat
:
Int
static
var
ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dark
:
Int
static
var
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dialog
:
Int
static
var
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
ThemeOverlay_AppCompat_Light
:
Int
static
var
ThemeOverlay_MaterialComponents
:
Int
static
var
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
ThemeOverlay_MaterialComponents_Light
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Theme_AppCompat
:
Int
static
var
Theme_AppCompat_CompactMenu
:
Int
static
var
Theme_AppCompat_DayNight
:
Int
static
var
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
var
Theme_AppCompat_DayNight_Dialog
:
Int
static
var
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
var
Theme_AppCompat_Dialog
:
Int
static
var
Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light
:
Int
static
var
Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Theme_AppCompat_Light_Dialog
:
Int
static
var
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light_NoActionBar
:
Int
static
var
Theme_AppCompat_NoActionBar
:
Int
static
var
Theme_Design
:
Int
static
var
Theme_Design_BottomSheetDialog
:
Int
static
var
Theme_Design_Light
:
Int
static
var
Theme_Design_Light_BottomSheetDialog
:
Int
static
var
Theme_Design_Light_NoActionBar
:
Int
static
var
Theme_Design_NoActionBar
:
Int
static
var
Theme_MaterialComponents
:
Int
static
var
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Bridge
:
Int
static
var
Theme_MaterialComponents_CompactMenu
:
Int
static
var
Theme_MaterialComponents_Dialog
:
Int
static
var
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light
:
Int
static
var
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_NoActionBar
:
Int
static
var
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
var
Widget_AppCompat_ActionBar
:
Int
static
var
Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_ActionButton
:
Int
static
var
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_ActionMode
:
Int
static
var
Widget_AppCompat_ActivityChooserView
:
Int
static
var
Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Button
:
Int
static
var
Widget_AppCompat_ButtonBar
:
Int
static
var
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Borderless
:
Int
static
var
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Colored
:
Int
static
var
Widget_AppCompat_Button_Small
:
Int
static
var
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_EditText
:
Int
static
var
Widget_AppCompat_ImageButton
:
Int
static
var
Widget_AppCompat_Light_ActionBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionButton
:
Int
static
var
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
var
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
var
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
var
Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_Light_SearchView
:
Int
static
var
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_ListMenuView
:
Int
static
var
Widget_AppCompat_ListPopupWindow
:
Int
static
var
Widget_AppCompat_ListView
:
Int
static
var
Widget_AppCompat_ListView_DropDown
:
Int
static
var
Widget_AppCompat_ListView_Menu
:
Int
static
var
Widget_AppCompat_PopupMenu
:
Int
static
var
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_PopupWindow
:
Int
static
var
Widget_AppCompat_ProgressBar
:
Int
static
var
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Widget_AppCompat_RatingBar
:
Int
static
var
Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Widget_AppCompat_RatingBar_Small
:
Int
static
var
Widget_AppCompat_SearchView
:
Int
static
var
Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Widget_AppCompat_SeekBar
:
Int
static
var
Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Widget_AppCompat_Spinner
:
Int
static
var
Widget_AppCompat_Spinner_DropDown
:
Int
static
var
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Widget_AppCompat_Toolbar
:
Int
static
var
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Widget_Compat_NotificationActionContainer
:
Int
static
var
Widget_Compat_NotificationActionText
:
Int
static
var
Widget_Design_AppBarLayout
:
Int
static
var
Widget_Design_BottomNavigationView
:
Int
static
var
Widget_Design_BottomSheet_Modal
:
Int
static
var
Widget_Design_CollapsingToolbar
:
Int
static
var
Widget_Design_FloatingActionButton
:
Int
static
var
Widget_Design_NavigationView
:
Int
static
var
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
var
Widget_Design_Snackbar
:
Int
static
var
Widget_Design_TabLayout
:
Int
static
var
Widget_Design_TextInputLayout
:
Int
static
var
Widget_MaterialComponents_BottomAppBar
:
Int
static
var
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
var
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
var
Widget_MaterialComponents_Button
:
Int
static
var
Widget_MaterialComponents_Button_Icon
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
var
Widget_MaterialComponents_CardView
:
Int
static
var
Widget_MaterialComponents_ChipGroup
:
Int
static
var
Widget_MaterialComponents_Chip_Action
:
Int
static
var
Widget_MaterialComponents_Chip_Choice
:
Int
static
var
Widget_MaterialComponents_Chip_Entry
:
Int
static
var
Widget_MaterialComponents_Chip_Filter
:
Int
static
var
Widget_MaterialComponents_FloatingActionButton
:
Int
static
var
Widget_MaterialComponents_NavigationView
:
Int
static
var
Widget_MaterialComponents_Snackbar
:
Int
static
var
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
var
Widget_MaterialComponents_TabLayout
:
Int
static
var
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_Toolbar
:
Int
static
var
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
var
ActionBar
:
IntArray
static
var
ActionBarLayout
:
IntArray
static
var
ActionBarLayout_android_layout_gravity
:
Int
static
var
ActionBar_background
:
Int
static
var
ActionBar_backgroundSplit
:
Int
static
var
ActionBar_backgroundStacked
:
Int
static
var
ActionBar_contentInsetEnd
:
Int
static
var
ActionBar_contentInsetEndWithActions
:
Int
static
var
ActionBar_contentInsetLeft
:
Int
static
var
ActionBar_contentInsetRight
:
Int
static
var
ActionBar_contentInsetStart
:
Int
static
var
ActionBar_contentInsetStartWithNavigation
:
Int
static
var
ActionBar_customNavigationLayout
:
Int
static
var
ActionBar_displayOptions
:
Int
static
var
ActionBar_divider
:
Int
static
var
ActionBar_elevation
:
Int
static
var
ActionBar_height
:
Int
static
var
ActionBar_hideOnContentScroll
:
Int
static
var
ActionBar_homeAsUpIndicator
:
Int
static
var
ActionBar_homeLayout
:
Int
static
var
ActionBar_icon
:
Int
static
var
ActionBar_indeterminateProgressStyle
:
Int
static
var
ActionBar_itemPadding
:
Int
static
var
ActionBar_logo
:
Int
static
var
ActionBar_navigationMode
:
Int
static
var
ActionBar_popupTheme
:
Int
static
var
ActionBar_progressBarPadding
:
Int
static
var
ActionBar_progressBarStyle
:
Int
static
var
ActionBar_subtitle
:
Int
static
var
ActionBar_subtitleTextStyle
:
Int
static
var
ActionBar_title
:
Int
static
var
ActionBar_titleTextStyle
:
Int
static
var
ActionMenuItemView
:
IntArray
static
var
ActionMenuItemView_android_minWidth
:
Int
static
var
ActionMode
:
IntArray
static
var
ActionMode_background
:
Int
static
var
ActionMode_backgroundSplit
:
Int
static
var
ActionMode_closeItemLayout
:
Int
static
var
ActionMode_height
:
Int
static
var
ActionMode_subtitleTextStyle
:
Int
static
var
ActionMode_titleTextStyle
:
Int
static
var
ActivityChooserView
:
IntArray
static
var
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
var
ActivityChooserView_initialActivityCount
:
Int
static
var
AlertDialog
:
IntArray
static
var
AlertDialog_android_layout
:
Int
static
var
AlertDialog_buttonIconDimen
:
Int
static
var
AlertDialog_buttonPanelSideLayout
:
Int
static
var
AlertDialog_listItemLayout
:
Int
static
var
AlertDialog_listLayout
:
Int
static
var
AlertDialog_multiChoiceItemLayout
:
Int
static
var
AlertDialog_showTitle
:
Int
static
var
AlertDialog_singleChoiceItemLayout
:
Int
static
var
AnimatedStateListDrawableCompat
:
IntArray
static
var
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
var
AnimatedStateListDrawableCompat_android_dither
:
Int
static
var
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
var
AnimatedStateListDrawableCompat_android_visible
:
Int
static
var
AnimatedStateListDrawableItem
:
IntArray
static
var
AnimatedStateListDrawableItem_android_drawable
:
Int
static
var
AnimatedStateListDrawableItem_android_id
:
Int
static
var
AnimatedStateListDrawableTransition
:
IntArray
static
var
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
var
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
var
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
var
AnimatedStateListDrawableTransition_android_toId
:
Int
static
var
AppBarLayout
:
IntArray
static
var
AppBarLayoutStates
:
IntArray
static
var
AppBarLayoutStates_state_collapsed
:
Int
static
var
AppBarLayoutStates_state_collapsible
:
Int
static
var
AppBarLayoutStates_state_liftable
:
Int
static
var
AppBarLayoutStates_state_lifted
:
Int
static
var
AppBarLayout_Layout
:
IntArray
static
var
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
var
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
var
AppBarLayout_android_background
:
Int
static
var
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
var
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
var
AppBarLayout_elevation
:
Int
static
var
AppBarLayout_expanded
:
Int
static
var
AppBarLayout_liftOnScroll
:
Int
static
var
AppCompatImageView
:
IntArray
static
var
AppCompatImageView_android_src
:
Int
static
var
AppCompatImageView_srcCompat
:
Int
static
var
AppCompatImageView_tint
:
Int
static
var
AppCompatImageView_tintMode
:
Int
static
var
AppCompatSeekBar
:
IntArray
static
var
AppCompatSeekBar_android_thumb
:
Int
static
var
AppCompatSeekBar_tickMark
:
Int
static
var
AppCompatSeekBar_tickMarkTint
:
Int
static
var
AppCompatSeekBar_tickMarkTintMode
:
Int
static
var
AppCompatTextHelper
:
IntArray
static
var
AppCompatTextHelper_android_drawableBottom
:
Int
static
var
AppCompatTextHelper_android_drawableEnd
:
Int
static
var
AppCompatTextHelper_android_drawableLeft
:
Int
static
var
AppCompatTextHelper_android_drawableRight
:
Int
static
var
AppCompatTextHelper_android_drawableStart
:
Int
static
var
AppCompatTextHelper_android_drawableTop
:
Int
static
var
AppCompatTextHelper_android_textAppearance
:
Int
static
var
AppCompatTextView
:
IntArray
static
var
AppCompatTextView_android_textAppearance
:
Int
static
var
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
var
AppCompatTextView_autoSizeMinTextSize
:
Int
static
var
AppCompatTextView_autoSizePresetSizes
:
Int
static
var
AppCompatTextView_autoSizeStepGranularity
:
Int
static
var
AppCompatTextView_autoSizeTextType
:
Int
static
var
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
var
AppCompatTextView_fontFamily
:
Int
static
var
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
var
AppCompatTextView_lineHeight
:
Int
static
var
AppCompatTextView_textAllCaps
:
Int
static
var
AppCompatTheme
:
IntArray
static
var
AppCompatTheme_actionBarDivider
:
Int
static
var
AppCompatTheme_actionBarItemBackground
:
Int
static
var
AppCompatTheme_actionBarPopupTheme
:
Int
static
var
AppCompatTheme_actionBarSize
:
Int
static
var
AppCompatTheme_actionBarSplitStyle
:
Int
static
var
AppCompatTheme_actionBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabStyle
:
Int
static
var
AppCompatTheme_actionBarTabTextStyle
:
Int
static
var
AppCompatTheme_actionBarTheme
:
Int
static
var
AppCompatTheme_actionBarWidgetTheme
:
Int
static
var
AppCompatTheme_actionButtonStyle
:
Int
static
var
AppCompatTheme_actionDropDownStyle
:
Int
static
var
AppCompatTheme_actionMenuTextAppearance
:
Int
static
var
AppCompatTheme_actionMenuTextColor
:
Int
static
var
AppCompatTheme_actionModeBackground
:
Int
static
var
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
var
AppCompatTheme_actionModeCloseDrawable
:
Int
static
var
AppCompatTheme_actionModeCopyDrawable
:
Int
static
var
AppCompatTheme_actionModeCutDrawable
:
Int
static
var
AppCompatTheme_actionModeFindDrawable
:
Int
static
var
AppCompatTheme_actionModePasteDrawable
:
Int
static
var
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
var
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
var
AppCompatTheme_actionModeShareDrawable
:
Int
static
var
AppCompatTheme_actionModeSplitBackground
:
Int
static
var
AppCompatTheme_actionModeStyle
:
Int
static
var
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
var
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
var
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
var
AppCompatTheme_activityChooserViewStyle
:
Int
static
var
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
var
AppCompatTheme_alertDialogCenterButtons
:
Int
static
var
AppCompatTheme_alertDialogStyle
:
Int
static
var
AppCompatTheme_alertDialogTheme
:
Int
static
var
AppCompatTheme_android_windowAnimationStyle
:
Int
static
var
AppCompatTheme_android_windowIsFloating
:
Int
static
var
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
var
AppCompatTheme_borderlessButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarStyle
:
Int
static
var
AppCompatTheme_buttonStyle
:
Int
static
var
AppCompatTheme_buttonStyleSmall
:
Int
static
var
AppCompatTheme_checkboxStyle
:
Int
static
var
AppCompatTheme_checkedTextViewStyle
:
Int
static
var
AppCompatTheme_colorAccent
:
Int
static
var
AppCompatTheme_colorBackgroundFloating
:
Int
static
var
AppCompatTheme_colorButtonNormal
:
Int
static
var
AppCompatTheme_colorControlActivated
:
Int
static
var
AppCompatTheme_colorControlHighlight
:
Int
static
var
AppCompatTheme_colorControlNormal
:
Int
static
var
AppCompatTheme_colorError
:
Int
static
var
AppCompatTheme_colorPrimary
:
Int
static
var
AppCompatTheme_colorPrimaryDark
:
Int
static
var
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
var
AppCompatTheme_controlBackground
:
Int
static
var
AppCompatTheme_dialogCornerRadius
:
Int
static
var
AppCompatTheme_dialogPreferredPadding
:
Int
static
var
AppCompatTheme_dialogTheme
:
Int
static
var
AppCompatTheme_dividerHorizontal
:
Int
static
var
AppCompatTheme_dividerVertical
:
Int
static
var
AppCompatTheme_dropDownListViewStyle
:
Int
static
var
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
var
AppCompatTheme_editTextBackground
:
Int
static
var
AppCompatTheme_editTextColor
:
Int
static
var
AppCompatTheme_editTextStyle
:
Int
static
var
AppCompatTheme_homeAsUpIndicator
:
Int
static
var
AppCompatTheme_imageButtonStyle
:
Int
static
var
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
var
AppCompatTheme_listDividerAlertDialog
:
Int
static
var
AppCompatTheme_listMenuViewStyle
:
Int
static
var
AppCompatTheme_listPopupWindowStyle
:
Int
static
var
AppCompatTheme_listPreferredItemHeight
:
Int
static
var
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
var
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
var
AppCompatTheme_panelBackground
:
Int
static
var
AppCompatTheme_panelMenuListTheme
:
Int
static
var
AppCompatTheme_panelMenuListWidth
:
Int
static
var
AppCompatTheme_popupMenuStyle
:
Int
static
var
AppCompatTheme_popupWindowStyle
:
Int
static
var
AppCompatTheme_radioButtonStyle
:
Int
static
var
AppCompatTheme_ratingBarStyle
:
Int
static
var
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
var
AppCompatTheme_ratingBarStyleSmall
:
Int
static
var
AppCompatTheme_searchViewStyle
:
Int
static
var
AppCompatTheme_seekBarStyle
:
Int
static
var
AppCompatTheme_selectableItemBackground
:
Int
static
var
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
var
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
var
AppCompatTheme_spinnerStyle
:
Int
static
var
AppCompatTheme_switchStyle
:
Int
static
var
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
var
AppCompatTheme_textAppearanceListItem
:
Int
static
var
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
var
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
var
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
var
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
var
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
var
AppCompatTheme_textColorSearchUrl
:
Int
static
var
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
var
AppCompatTheme_toolbarStyle
:
Int
static
var
AppCompatTheme_tooltipForegroundColor
:
Int
static
var
AppCompatTheme_tooltipFrameBackground
:
Int
static
var
AppCompatTheme_viewInflaterClass
:
Int
static
var
AppCompatTheme_windowActionBar
:
Int
static
var
AppCompatTheme_windowActionBarOverlay
:
Int
static
var
AppCompatTheme_windowActionModeOverlay
:
Int
static
var
AppCompatTheme_windowFixedHeightMajor
:
Int
static
var
AppCompatTheme_windowFixedHeightMinor
:
Int
static
var
AppCompatTheme_windowFixedWidthMajor
:
Int
static
var
AppCompatTheme_windowFixedWidthMinor
:
Int
static
var
AppCompatTheme_windowMinWidthMajor
:
Int
static
var
AppCompatTheme_windowMinWidthMinor
:
Int
static
var
AppCompatTheme_windowNoTitle
:
Int
static
var
BottomAppBar
:
IntArray
static
var
BottomAppBar_backgroundTint
:
Int
static
var
BottomAppBar_fabAlignmentMode
:
Int
static
var
BottomAppBar_fabCradleMargin
:
Int
static
var
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
var
BottomAppBar_fabCradleVerticalOffset
:
Int
static
var
BottomAppBar_hideOnScroll
:
Int
static
var
BottomNavigationView
:
IntArray
static
var
BottomNavigationView_elevation
:
Int
static
var
BottomNavigationView_itemBackground
:
Int
static
var
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
var
BottomNavigationView_itemIconSize
:
Int
static
var
BottomNavigationView_itemIconTint
:
Int
static
var
BottomNavigationView_itemTextAppearanceActive
:
Int
static
var
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
var
BottomNavigationView_itemTextColor
:
Int
static
var
BottomNavigationView_labelVisibilityMode
:
Int
static
var
BottomNavigationView_menu
:
Int
static
var
BottomSheetBehavior_Layout
:
IntArray
static
var
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
var
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
var
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
var
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
var
ButtonBarLayout
:
IntArray
static
var
ButtonBarLayout_allowStacking
:
Int
static
var
CardView
:
IntArray
static
var
CardView_android_minHeight
:
Int
static
var
CardView_android_minWidth
:
Int
static
var
CardView_cardBackgroundColor
:
Int
static
var
CardView_cardCornerRadius
:
Int
static
var
CardView_cardElevation
:
Int
static
var
CardView_cardMaxElevation
:
Int
static
var
CardView_cardPreventCornerOverlap
:
Int
static
var
CardView_cardUseCompatPadding
:
Int
static
var
CardView_contentPadding
:
Int
static
var
CardView_contentPaddingBottom
:
Int
static
var
CardView_contentPaddingLeft
:
Int
static
var
CardView_contentPaddingRight
:
Int
static
var
CardView_contentPaddingTop
:
Int
static
var
Chip
:
IntArray
static
var
ChipGroup
:
IntArray
static
var
ChipGroup_checkedChip
:
Int
static
var
ChipGroup_chipSpacing
:
Int
static
var
ChipGroup_chipSpacingHorizontal
:
Int
static
var
ChipGroup_chipSpacingVertical
:
Int
static
var
ChipGroup_singleLine
:
Int
static
var
ChipGroup_singleSelection
:
Int
static
var
Chip_android_checkable
:
Int
static
var
Chip_android_ellipsize
:
Int
static
var
Chip_android_maxWidth
:
Int
static
var
Chip_android_text
:
Int
static
var
Chip_android_textAppearance
:
Int
static
var
Chip_checkedIcon
:
Int
static
var
Chip_checkedIconEnabled
:
Int
static
var
Chip_checkedIconVisible
:
Int
static
var
Chip_chipBackgroundColor
:
Int
static
var
Chip_chipCornerRadius
:
Int
static
var
Chip_chipEndPadding
:
Int
static
var
Chip_chipIcon
:
Int
static
var
Chip_chipIconEnabled
:
Int
static
var
Chip_chipIconSize
:
Int
static
var
Chip_chipIconTint
:
Int
static
var
Chip_chipIconVisible
:
Int
static
var
Chip_chipMinHeight
:
Int
static
var
Chip_chipStartPadding
:
Int
static
var
Chip_chipStrokeColor
:
Int
static
var
Chip_chipStrokeWidth
:
Int
static
var
Chip_closeIcon
:
Int
static
var
Chip_closeIconEnabled
:
Int
static
var
Chip_closeIconEndPadding
:
Int
static
var
Chip_closeIconSize
:
Int
static
var
Chip_closeIconStartPadding
:
Int
static
var
Chip_closeIconTint
:
Int
static
var
Chip_closeIconVisible
:
Int
static
var
Chip_hideMotionSpec
:
Int
static
var
Chip_iconEndPadding
:
Int
static
var
Chip_iconStartPadding
:
Int
static
var
Chip_rippleColor
:
Int
static
var
Chip_showMotionSpec
:
Int
static
var
Chip_textEndPadding
:
Int
static
var
Chip_textStartPadding
:
Int
static
var
CollapsingToolbarLayout
:
IntArray
static
var
CollapsingToolbarLayout_Layout
:
IntArray
static
var
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
var
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_contentScrim
:
Int
static
var
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
var
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
var
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
var
CollapsingToolbarLayout_statusBarScrim
:
Int
static
var
CollapsingToolbarLayout_title
:
Int
static
var
CollapsingToolbarLayout_titleEnabled
:
Int
static
var
CollapsingToolbarLayout_toolbarId
:
Int
static
var
ColorStateListItem
:
IntArray
static
var
ColorStateListItem_alpha
:
Int
static
var
ColorStateListItem_android_alpha
:
Int
static
var
ColorStateListItem_android_color
:
Int
static
var
CompoundButton
:
IntArray
static
var
CompoundButton_android_button
:
Int
static
var
CompoundButton_buttonTint
:
Int
static
var
CompoundButton_buttonTintMode
:
Int
static
var
ConstraintLayout_Layout
:
IntArray
static
var
ConstraintLayout_Layout_android_maxHeight
:
Int
static
var
ConstraintLayout_Layout_android_maxWidth
:
Int
static
var
ConstraintLayout_Layout_android_minHeight
:
Int
static
var
ConstraintLayout_Layout_android_minWidth
:
Int
static
var
ConstraintLayout_Layout_android_orientation
:
Int
static
var
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
var
ConstraintLayout_Layout_barrierDirection
:
Int
static
var
ConstraintLayout_Layout_chainUseRtl
:
Int
static
var
ConstraintLayout_Layout_constraintSet
:
Int
static
var
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
var
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
var
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
var
ConstraintLayout_placeholder
:
IntArray
static
var
ConstraintLayout_placeholder_content
:
Int
static
var
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
var
ConstraintSet
:
IntArray
static
var
ConstraintSet_android_alpha
:
Int
static
var
ConstraintSet_android_elevation
:
Int
static
var
ConstraintSet_android_id
:
Int
static
var
ConstraintSet_android_layout_height
:
Int
static
var
ConstraintSet_android_layout_marginBottom
:
Int
static
var
ConstraintSet_android_layout_marginEnd
:
Int
static
var
ConstraintSet_android_layout_marginLeft
:
Int
static
var
ConstraintSet_android_layout_marginRight
:
Int
static
var
ConstraintSet_android_layout_marginStart
:
Int
static
var
ConstraintSet_android_layout_marginTop
:
Int
static
var
ConstraintSet_android_layout_width
:
Int
static
var
ConstraintSet_android_orientation
:
Int
static
var
ConstraintSet_android_rotation
:
Int
static
var
ConstraintSet_android_rotationX
:
Int
static
var
ConstraintSet_android_rotationY
:
Int
static
var
ConstraintSet_android_scaleX
:
Int
static
var
ConstraintSet_android_scaleY
:
Int
static
var
ConstraintSet_android_transformPivotX
:
Int
static
var
ConstraintSet_android_transformPivotY
:
Int
static
var
ConstraintSet_android_translationX
:
Int
static
var
ConstraintSet_android_translationY
:
Int
static
var
ConstraintSet_android_translationZ
:
Int
static
var
ConstraintSet_android_visibility
:
Int
static
var
ConstraintSet_layout_constrainedHeight
:
Int
static
var
ConstraintSet_layout_constrainedWidth
:
Int
static
var
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
var
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_creator
:
Int
static
var
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintCircle
:
Int
static
var
ConstraintSet_layout_constraintCircleAngle
:
Int
static
var
ConstraintSet_layout_constraintCircleRadius
:
Int
static
var
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
var
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintGuide_begin
:
Int
static
var
ConstraintSet_layout_constraintGuide_end
:
Int
static
var
ConstraintSet_layout_constraintGuide_percent
:
Int
static
var
ConstraintSet_layout_constraintHeight_default
:
Int
static
var
ConstraintSet_layout_constraintHeight_max
:
Int
static
var
ConstraintSet_layout_constraintHeight_min
:
Int
static
var
ConstraintSet_layout_constraintHeight_percent
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintSet_layout_constraintLeft_creator
:
Int
static
var
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintRight_creator
:
Int
static
var
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintTop_creator
:
Int
static
var
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintVertical_bias
:
Int
static
var
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintVertical_weight
:
Int
static
var
ConstraintSet_layout_constraintWidth_default
:
Int
static
var
ConstraintSet_layout_constraintWidth_max
:
Int
static
var
ConstraintSet_layout_constraintWidth_min
:
Int
static
var
ConstraintSet_layout_constraintWidth_percent
:
Int
static
var
ConstraintSet_layout_editor_absoluteX
:
Int
static
var
ConstraintSet_layout_editor_absoluteY
:
Int
static
var
ConstraintSet_layout_goneMarginBottom
:
Int
static
var
ConstraintSet_layout_goneMarginEnd
:
Int
static
var
ConstraintSet_layout_goneMarginLeft
:
Int
static
var
ConstraintSet_layout_goneMarginRight
:
Int
static
var
ConstraintSet_layout_goneMarginStart
:
Int
static
var
ConstraintSet_layout_goneMarginTop
:
Int
static
var
CoordinatorLayout
:
IntArray
static
var
CoordinatorLayout_Layout
:
IntArray
static
var
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
var
CoordinatorLayout_Layout_layout_anchor
:
Int
static
var
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
var
CoordinatorLayout_Layout_layout_behavior
:
Int
static
var
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
var
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
var
CoordinatorLayout_Layout_layout_keyline
:
Int
static
var
CoordinatorLayout_keylines
:
Int
static
var
CoordinatorLayout_statusBarBackground
:
Int
static
var
DesignTheme
:
IntArray
static
var
DesignTheme_bottomSheetDialogTheme
:
Int
static
var
DesignTheme_bottomSheetStyle
:
Int
static
var
DrawerArrowToggle
:
IntArray
static
var
DrawerArrowToggle_arrowHeadLength
:
Int
static
var
DrawerArrowToggle_arrowShaftLength
:
Int
static
var
DrawerArrowToggle_barLength
:
Int
static
var
DrawerArrowToggle_color
:
Int
static
var
DrawerArrowToggle_drawableSize
:
Int
static
var
DrawerArrowToggle_gapBetweenBars
:
Int
static
var
DrawerArrowToggle_spinBars
:
Int
static
var
DrawerArrowToggle_thickness
:
Int
static
var
FloatingActionButton
:
IntArray
static
var
FloatingActionButton_Behavior_Layout
:
IntArray
static
var
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
var
FloatingActionButton_backgroundTint
:
Int
static
var
FloatingActionButton_backgroundTintMode
:
Int
static
var
FloatingActionButton_borderWidth
:
Int
static
var
FloatingActionButton_elevation
:
Int
static
var
FloatingActionButton_fabCustomSize
:
Int
static
var
FloatingActionButton_fabSize
:
Int
static
var
FloatingActionButton_hideMotionSpec
:
Int
static
var
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
var
FloatingActionButton_maxImageSize
:
Int
static
var
FloatingActionButton_pressedTranslationZ
:
Int
static
var
FloatingActionButton_rippleColor
:
Int
static
var
FloatingActionButton_showMotionSpec
:
Int
static
var
FloatingActionButton_useCompatPadding
:
Int
static
var
FlowLayout
:
IntArray
static
var
FlowLayout_itemSpacing
:
Int
static
var
FlowLayout_lineSpacing
:
Int
static
var
FontFamily
:
IntArray
static
var
FontFamilyFont
:
IntArray
static
var
FontFamilyFont_android_font
:
Int
static
var
FontFamilyFont_android_fontStyle
:
Int
static
var
FontFamilyFont_android_fontVariationSettings
:
Int
static
var
FontFamilyFont_android_fontWeight
:
Int
static
var
FontFamilyFont_android_ttcIndex
:
Int
static
var
FontFamilyFont_font
:
Int
static
var
FontFamilyFont_fontStyle
:
Int
static
var
FontFamilyFont_fontVariationSettings
:
Int
static
var
FontFamilyFont_fontWeight
:
Int
static
var
FontFamilyFont_ttcIndex
:
Int
static
var
FontFamily_fontProviderAuthority
:
Int
static
var
FontFamily_fontProviderCerts
:
Int
static
var
FontFamily_fontProviderFetchStrategy
:
Int
static
var
FontFamily_fontProviderFetchTimeout
:
Int
static
var
FontFamily_fontProviderPackage
:
Int
static
var
FontFamily_fontProviderQuery
:
Int
static
var
ForegroundLinearLayout
:
IntArray
static
var
ForegroundLinearLayout_android_foreground
:
Int
static
var
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
var
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
var
GradientColor
:
IntArray
static
var
GradientColorItem
:
IntArray
static
var
GradientColorItem_android_color
:
Int
static
var
GradientColorItem_android_offset
:
Int
static
var
GradientColor_android_centerColor
:
Int
static
var
GradientColor_android_centerX
:
Int
static
var
GradientColor_android_centerY
:
Int
static
var
GradientColor_android_endColor
:
Int
static
var
GradientColor_android_endX
:
Int
static
var
GradientColor_android_endY
:
Int
static
var
GradientColor_android_gradientRadius
:
Int
static
var
GradientColor_android_startColor
:
Int
static
var
GradientColor_android_startX
:
Int
static
var
GradientColor_android_startY
:
Int
static
var
GradientColor_android_tileMode
:
Int
static
var
GradientColor_android_type
:
Int
static
var
LinearConstraintLayout
:
IntArray
static
var
LinearConstraintLayout_android_orientation
:
Int
static
var
LinearLayoutCompat
:
IntArray
static
var
LinearLayoutCompat_Layout
:
IntArray
static
var
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
var
LinearLayoutCompat_android_baselineAligned
:
Int
static
var
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
var
LinearLayoutCompat_android_gravity
:
Int
static
var
LinearLayoutCompat_android_orientation
:
Int
static
var
LinearLayoutCompat_android_weightSum
:
Int
static
var
LinearLayoutCompat_divider
:
Int
static
var
LinearLayoutCompat_dividerPadding
:
Int
static
var
LinearLayoutCompat_measureWithLargestChild
:
Int
static
var
LinearLayoutCompat_showDividers
:
Int
static
var
ListPopupWindow
:
IntArray
static
var
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
var
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
var
MaterialButton
:
IntArray
static
var
MaterialButton_android_insetBottom
:
Int
static
var
MaterialButton_android_insetLeft
:
Int
static
var
MaterialButton_android_insetRight
:
Int
static
var
MaterialButton_android_insetTop
:
Int
static
var
MaterialButton_backgroundTint
:
Int
static
var
MaterialButton_backgroundTintMode
:
Int
static
var
MaterialButton_cornerRadius
:
Int
static
var
MaterialButton_icon
:
Int
static
var
MaterialButton_iconGravity
:
Int
static
var
MaterialButton_iconPadding
:
Int
static
var
MaterialButton_iconSize
:
Int
static
var
MaterialButton_iconTint
:
Int
static
var
MaterialButton_iconTintMode
:
Int
static
var
MaterialButton_rippleColor
:
Int
static
var
MaterialButton_strokeColor
:
Int
static
var
MaterialButton_strokeWidth
:
Int
static
var
MaterialCardView
:
IntArray
static
var
MaterialCardView_strokeColor
:
Int
static
var
MaterialCardView_strokeWidth
:
Int
static
var
MaterialComponentsTheme
:
IntArray
static
var
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
var
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
var
MaterialComponentsTheme_chipGroupStyle
:
Int
static
var
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
var
MaterialComponentsTheme_chipStyle
:
Int
static
var
MaterialComponentsTheme_colorAccent
:
Int
static
var
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
var
MaterialComponentsTheme_colorPrimary
:
Int
static
var
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
var
MaterialComponentsTheme_colorSecondary
:
Int
static
var
MaterialComponentsTheme_editTextStyle
:
Int
static
var
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
var
MaterialComponentsTheme_navigationViewStyle
:
Int
static
var
MaterialComponentsTheme_scrimBackground
:
Int
static
var
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
var
MaterialComponentsTheme_tabStyle
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
var
MaterialComponentsTheme_textAppearanceButton
:
Int
static
var
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
var
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
var
MaterialComponentsTheme_textInputStyle
:
Int
static
var
MenuGroup
:
IntArray
static
var
MenuGroup_android_checkableBehavior
:
Int
static
var
MenuGroup_android_enabled
:
Int
static
var
MenuGroup_android_id
:
Int
static
var
MenuGroup_android_menuCategory
:
Int
static
var
MenuGroup_android_orderInCategory
:
Int
static
var
MenuGroup_android_visible
:
Int
static
var
MenuItem
:
IntArray
static
var
MenuItem_actionLayout
:
Int
static
var
MenuItem_actionProviderClass
:
Int
static
var
MenuItem_actionViewClass
:
Int
static
var
MenuItem_alphabeticModifiers
:
Int
static
var
MenuItem_android_alphabeticShortcut
:
Int
static
var
MenuItem_android_checkable
:
Int
static
var
MenuItem_android_checked
:
Int
static
var
MenuItem_android_enabled
:
Int
static
var
MenuItem_android_icon
:
Int
static
var
MenuItem_android_id
:
Int
static
var
MenuItem_android_menuCategory
:
Int
static
var
MenuItem_android_numericShortcut
:
Int
static
var
MenuItem_android_onClick
:
Int
static
var
MenuItem_android_orderInCategory
:
Int
static
var
MenuItem_android_title
:
Int
static
var
MenuItem_android_titleCondensed
:
Int
static
var
MenuItem_android_visible
:
Int
static
var
MenuItem_contentDescription
:
Int
static
var
MenuItem_iconTint
:
Int
static
var
MenuItem_iconTintMode
:
Int
static
var
MenuItem_numericModifiers
:
Int
static
var
MenuItem_showAsAction
:
Int
static
var
MenuItem_tooltipText
:
Int
static
var
MenuView
:
IntArray
static
var
MenuView_android_headerBackground
:
Int
static
var
MenuView_android_horizontalDivider
:
Int
static
var
MenuView_android_itemBackground
:
Int
static
var
MenuView_android_itemIconDisabledAlpha
:
Int
static
var
MenuView_android_itemTextAppearance
:
Int
static
var
MenuView_android_verticalDivider
:
Int
static
var
MenuView_android_windowAnimationStyle
:
Int
static
var
MenuView_preserveIconSpacing
:
Int
static
var
MenuView_subMenuArrow
:
Int
static
var
NavigationView
:
IntArray
static
var
NavigationView_android_background
:
Int
static
var
NavigationView_android_fitsSystemWindows
:
Int
static
var
NavigationView_android_maxWidth
:
Int
static
var
NavigationView_elevation
:
Int
static
var
NavigationView_headerLayout
:
Int
static
var
NavigationView_itemBackground
:
Int
static
var
NavigationView_itemHorizontalPadding
:
Int
static
var
NavigationView_itemIconPadding
:
Int
static
var
NavigationView_itemIconTint
:
Int
static
var
NavigationView_itemTextAppearance
:
Int
static
var
NavigationView_itemTextColor
:
Int
static
var
NavigationView_menu
:
Int
static
var
PopupWindow
:
IntArray
static
var
PopupWindowBackgroundState
:
IntArray
static
var
PopupWindowBackgroundState_state_above_anchor
:
Int
static
var
PopupWindow_android_popupAnimationStyle
:
Int
static
var
PopupWindow_android_popupBackground
:
Int
static
var
PopupWindow_overlapAnchor
:
Int
static
var
RecycleListView
:
IntArray
static
var
RecycleListView_paddingBottomNoButtons
:
Int
static
var
RecycleListView_paddingTopNoTitle
:
Int
static
var
RecyclerView
:
IntArray
static
var
RecyclerView_android_descendantFocusability
:
Int
static
var
RecyclerView_android_orientation
:
Int
static
var
RecyclerView_fastScrollEnabled
:
Int
static
var
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
var
RecyclerView_layoutManager
:
Int
static
var
RecyclerView_reverseLayout
:
Int
static
var
RecyclerView_spanCount
:
Int
static
var
RecyclerView_stackFromEnd
:
Int
static
var
ScrimInsetsFrameLayout
:
IntArray
static
var
ScrimInsetsFrameLayout_insetForeground
:
Int
static
var
ScrollingViewBehavior_Layout
:
IntArray
static
var
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
var
SearchView
:
IntArray
static
var
SearchView_android_focusable
:
Int
static
var
SearchView_android_imeOptions
:
Int
static
var
SearchView_android_inputType
:
Int
static
var
SearchView_android_maxWidth
:
Int
static
var
SearchView_closeIcon
:
Int
static
var
SearchView_commitIcon
:
Int
static
var
SearchView_defaultQueryHint
:
Int
static
var
SearchView_goIcon
:
Int
static
var
SearchView_iconifiedByDefault
:
Int
static
var
SearchView_layout
:
Int
static
var
SearchView_queryBackground
:
Int
static
var
SearchView_queryHint
:
Int
static
var
SearchView_searchHintIcon
:
Int
static
var
SearchView_searchIcon
:
Int
static
var
SearchView_submitBackground
:
Int
static
var
SearchView_suggestionRowLayout
:
Int
static
var
SearchView_voiceIcon
:
Int
static
var
Snackbar
:
IntArray
static
var
SnackbarLayout
:
IntArray
static
var
SnackbarLayout_android_maxWidth
:
Int
static
var
SnackbarLayout_elevation
:
Int
static
var
SnackbarLayout_maxActionInlineWidth
:
Int
static
var
Snackbar_snackbarButtonStyle
:
Int
static
var
Snackbar_snackbarStyle
:
Int
static
var
Spinner
:
IntArray
static
var
Spinner_android_dropDownWidth
:
Int
static
var
Spinner_android_entries
:
Int
static
var
Spinner_android_popupBackground
:
Int
static
var
Spinner_android_prompt
:
Int
static
var
Spinner_popupTheme
:
Int
static
var
StateListDrawable
:
IntArray
static
var
StateListDrawableItem
:
IntArray
static
var
StateListDrawableItem_android_drawable
:
Int
static
var
StateListDrawable_android_constantSize
:
Int
static
var
StateListDrawable_android_dither
:
Int
static
var
StateListDrawable_android_enterFadeDuration
:
Int
static
var
StateListDrawable_android_exitFadeDuration
:
Int
static
var
StateListDrawable_android_variablePadding
:
Int
static
var
StateListDrawable_android_visible
:
Int
static
var
SwitchCompat
:
IntArray
static
var
SwitchCompat_android_textOff
:
Int
static
var
SwitchCompat_android_textOn
:
Int
static
var
SwitchCompat_android_thumb
:
Int
static
var
SwitchCompat_showText
:
Int
static
var
SwitchCompat_splitTrack
:
Int
static
var
SwitchCompat_switchMinWidth
:
Int
static
var
SwitchCompat_switchPadding
:
Int
static
var
SwitchCompat_switchTextAppearance
:
Int
static
var
SwitchCompat_thumbTextPadding
:
Int
static
var
SwitchCompat_thumbTint
:
Int
static
var
SwitchCompat_thumbTintMode
:
Int
static
var
SwitchCompat_track
:
Int
static
var
SwitchCompat_trackTint
:
Int
static
var
SwitchCompat_trackTintMode
:
Int
static
var
TabItem
:
IntArray
static
var
TabItem_android_icon
:
Int
static
var
TabItem_android_layout
:
Int
static
var
TabItem_android_text
:
Int
static
var
TabLayout
:
IntArray
static
var
TabLayout_tabBackground
:
Int
static
var
TabLayout_tabContentStart
:
Int
static
var
TabLayout_tabGravity
:
Int
static
var
TabLayout_tabIconTint
:
Int
static
var
TabLayout_tabIconTintMode
:
Int
static
var
TabLayout_tabIndicator
:
Int
static
var
TabLayout_tabIndicatorAnimationDuration
:
Int
static
var
TabLayout_tabIndicatorColor
:
Int
static
var
TabLayout_tabIndicatorFullWidth
:
Int
static
var
TabLayout_tabIndicatorGravity
:
Int
static
var
TabLayout_tabIndicatorHeight
:
Int
static
var
TabLayout_tabInlineLabel
:
Int
static
var
TabLayout_tabMaxWidth
:
Int
static
var
TabLayout_tabMinWidth
:
Int
static
var
TabLayout_tabMode
:
Int
static
var
TabLayout_tabPadding
:
Int
static
var
TabLayout_tabPaddingBottom
:
Int
static
var
TabLayout_tabPaddingEnd
:
Int
static
var
TabLayout_tabPaddingStart
:
Int
static
var
TabLayout_tabPaddingTop
:
Int
static
var
TabLayout_tabRippleColor
:
Int
static
var
TabLayout_tabSelectedTextColor
:
Int
static
var
TabLayout_tabTextAppearance
:
Int
static
var
TabLayout_tabTextColor
:
Int
static
var
TabLayout_tabUnboundedRipple
:
Int
static
var
TextAppearance
:
IntArray
static
var
TextAppearance_android_fontFamily
:
Int
static
var
TextAppearance_android_shadowColor
:
Int
static
var
TextAppearance_android_shadowDx
:
Int
static
var
TextAppearance_android_shadowDy
:
Int
static
var
TextAppearance_android_shadowRadius
:
Int
static
var
TextAppearance_android_textColor
:
Int
static
var
TextAppearance_android_textColorHint
:
Int
static
var
TextAppearance_android_textColorLink
:
Int
static
var
TextAppearance_android_textSize
:
Int
static
var
TextAppearance_android_textStyle
:
Int
static
var
TextAppearance_android_typeface
:
Int
static
var
TextAppearance_fontFamily
:
Int
static
var
TextAppearance_textAllCaps
:
Int
static
var
TextInputLayout
:
IntArray
static
var
TextInputLayout_android_hint
:
Int
static
var
TextInputLayout_android_textColorHint
:
Int
static
var
TextInputLayout_boxBackgroundColor
:
Int
static
var
TextInputLayout_boxBackgroundMode
:
Int
static
var
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
var
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
var
TextInputLayout_boxStrokeColor
:
Int
static
var
TextInputLayout_boxStrokeWidth
:
Int
static
var
TextInputLayout_counterEnabled
:
Int
static
var
TextInputLayout_counterMaxLength
:
Int
static
var
TextInputLayout_counterOverflowTextAppearance
:
Int
static
var
TextInputLayout_counterTextAppearance
:
Int
static
var
TextInputLayout_errorEnabled
:
Int
static
var
TextInputLayout_errorTextAppearance
:
Int
static
var
TextInputLayout_helperText
:
Int
static
var
TextInputLayout_helperTextEnabled
:
Int
static
var
TextInputLayout_helperTextTextAppearance
:
Int
static
var
TextInputLayout_hintAnimationEnabled
:
Int
static
var
TextInputLayout_hintEnabled
:
Int
static
var
TextInputLayout_hintTextAppearance
:
Int
static
var
TextInputLayout_passwordToggleContentDescription
:
Int
static
var
TextInputLayout_passwordToggleDrawable
:
Int
static
var
TextInputLayout_passwordToggleEnabled
:
Int
static
var
TextInputLayout_passwordToggleTint
:
Int
static
var
TextInputLayout_passwordToggleTintMode
:
Int
static
var
ThemeEnforcement
:
IntArray
static
var
ThemeEnforcement_android_textAppearance
:
Int
static
var
ThemeEnforcement_enforceMaterialTheme
:
Int
static
var
ThemeEnforcement_enforceTextAppearance
:
Int
static
var
Toolbar
:
IntArray
static
var
Toolbar_android_gravity
:
Int
static
var
Toolbar_android_minHeight
:
Int
static
var
Toolbar_buttonGravity
:
Int
static
var
Toolbar_collapseContentDescription
:
Int
static
var
Toolbar_collapseIcon
:
Int
static
var
Toolbar_contentInsetEnd
:
Int
static
var
Toolbar_contentInsetEndWithActions
:
Int
static
var
Toolbar_contentInsetLeft
:
Int
static
var
Toolbar_contentInsetRight
:
Int
static
var
Toolbar_contentInsetStart
:
Int
static
var
Toolbar_contentInsetStartWithNavigation
:
Int
static
var
Toolbar_logo
:
Int
static
var
Toolbar_logoDescription
:
Int
static
var
Toolbar_maxButtonHeight
:
Int
static
var
Toolbar_navigationContentDescription
:
Int
static
var
Toolbar_navigationIcon
:
Int
static
var
Toolbar_popupTheme
:
Int
static
var
Toolbar_subtitle
:
Int
static
var
Toolbar_subtitleTextAppearance
:
Int
static
var
Toolbar_subtitleTextColor
:
Int
static
var
Toolbar_title
:
Int
static
var
Toolbar_titleMargin
:
Int
static
var
Toolbar_titleMarginBottom
:
Int
static
var
Toolbar_titleMarginEnd
:
Int
static
var
Toolbar_titleMarginStart
:
Int
static
var
Toolbar_titleMarginTop
:
Int
static
var
Toolbar_titleMargins
:
Int
static
var
Toolbar_titleTextAppearance
:
Int
static
var
Toolbar_titleTextColor
:
Int
static
var
View
:
IntArray
static
var
ViewBackgroundHelper
:
IntArray
static
var
ViewBackgroundHelper_android_background
:
Int
static
var
ViewBackgroundHelper_backgroundTint
:
Int
static
var
ViewBackgroundHelper_backgroundTintMode
:
Int
static
var
ViewStubCompat
:
IntArray
static
var
ViewStubCompat_android_id
:
Int
static
var
ViewStubCompat_android_inflatedId
:
Int
static
var
ViewStubCompat_android_layout
:
Int
static
var
View_android_focusable
:
Int
static
var
View_android_theme
:
Int
static
var
View_paddingEnd
:
Int
static
var
View_paddingStart
:
Int
static
var
View_theme
:
Int
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
var
abc_fade_in
:
Int
static
var
abc_fade_out
:
Int
static
var
abc_grow_fade_in_from_bottom
:
Int
static
var
abc_popup_enter
:
Int
static
var
abc_popup_exit
:
Int
static
var
abc_shrink_fade_out_from_bottom
:
Int
static
var
abc_slide_in_bottom
:
Int
static
var
abc_slide_in_top
:
Int
static
var
abc_slide_out_bottom
:
Int
static
var
abc_slide_out_top
:
Int
static
var
abc_tooltip_enter
:
Int
static
var
abc_tooltip_exit
:
Int
static
var
design_bottom_sheet_slide_in
:
Int
static
var
design_bottom_sheet_slide_out
:
Int
static
var
design_snackbar_in
:
Int
static
var
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
var
design_appbar_state_list_animator
:
Int
static
var
design_fab_hide_motion_spec
:
Int
static
var
design_fab_show_motion_spec
:
Int
static
var
mtrl_btn_state_list_anim
:
Int
static
var
mtrl_btn_unelevated_state_list_anim
:
Int
static
var
mtrl_chip_state_list_anim
:
Int
static
var
mtrl_fab_hide_motion_spec
:
Int
static
var
mtrl_fab_show_motion_spec
:
Int
static
var
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
var
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
var
actionBarDivider
:
Int
static
var
actionBarItemBackground
:
Int
static
var
actionBarPopupTheme
:
Int
static
var
actionBarSize
:
Int
static
var
actionBarSplitStyle
:
Int
static
var
actionBarStyle
:
Int
static
var
actionBarTabBarStyle
:
Int
static
var
actionBarTabStyle
:
Int
static
var
actionBarTabTextStyle
:
Int
static
var
actionBarTheme
:
Int
static
var
actionBarWidgetTheme
:
Int
static
var
actionButtonStyle
:
Int
static
var
actionDropDownStyle
:
Int
static
var
actionLayout
:
Int
static
var
actionMenuTextAppearance
:
Int
static
var
actionMenuTextColor
:
Int
static
var
actionModeBackground
:
Int
static
var
actionModeCloseButtonStyle
:
Int
static
var
actionModeCloseDrawable
:
Int
static
var
actionModeCopyDrawable
:
Int
static
var
actionModeCutDrawable
:
Int
static
var
actionModeFindDrawable
:
Int
static
var
actionModePasteDrawable
:
Int
static
var
actionModePopupWindowStyle
:
Int
static
var
actionModeSelectAllDrawable
:
Int
static
var
actionModeShareDrawable
:
Int
static
var
actionModeSplitBackground
:
Int
static
var
actionModeStyle
:
Int
static
var
actionModeWebSearchDrawable
:
Int
static
var
actionOverflowButtonStyle
:
Int
static
var
actionOverflowMenuStyle
:
Int
static
var
actionProviderClass
:
Int
static
var
actionViewClass
:
Int
static
var
activityChooserViewStyle
:
Int
static
var
alertDialogButtonGroupStyle
:
Int
static
var
alertDialogCenterButtons
:
Int
static
var
alertDialogStyle
:
Int
static
var
alertDialogTheme
:
Int
static
var
allowStacking
:
Int
static
var
alpha
:
Int
static
var
alphabeticModifiers
:
Int
static
var
arrowHeadLength
:
Int
static
var
arrowShaftLength
:
Int
static
var
autoCompleteTextViewStyle
:
Int
static
var
autoSizeMaxTextSize
:
Int
static
var
autoSizeMinTextSize
:
Int
static
var
autoSizePresetSizes
:
Int
static
var
autoSizeStepGranularity
:
Int
static
var
autoSizeTextType
:
Int
static
var
background
:
Int
static
var
backgroundSplit
:
Int
static
var
backgroundStacked
:
Int
static
var
backgroundTint
:
Int
static
var
backgroundTintMode
:
Int
static
var
barLength
:
Int
static
var
barrierAllowsGoneWidgets
:
Int
static
var
barrierDirection
:
Int
static
var
behavior_autoHide
:
Int
static
var
behavior_fitToContents
:
Int
static
var
behavior_hideable
:
Int
static
var
behavior_overlapTop
:
Int
static
var
behavior_peekHeight
:
Int
static
var
behavior_skipCollapsed
:
Int
static
var
borderWidth
:
Int
static
var
borderlessButtonStyle
:
Int
static
var
bottomAppBarStyle
:
Int
static
var
bottomNavigationStyle
:
Int
static
var
bottomSheetDialogTheme
:
Int
static
var
bottomSheetStyle
:
Int
static
var
boxBackgroundColor
:
Int
static
var
boxBackgroundMode
:
Int
static
var
boxCollapsedPaddingTop
:
Int
static
var
boxCornerRadiusBottomEnd
:
Int
static
var
boxCornerRadiusBottomStart
:
Int
static
var
boxCornerRadiusTopEnd
:
Int
static
var
boxCornerRadiusTopStart
:
Int
static
var
boxStrokeColor
:
Int
static
var
boxStrokeWidth
:
Int
static
var
buttonBarButtonStyle
:
Int
static
var
buttonBarNegativeButtonStyle
:
Int
static
var
buttonBarNeutralButtonStyle
:
Int
static
var
buttonBarPositiveButtonStyle
:
Int
static
var
buttonBarStyle
:
Int
static
var
buttonGravity
:
Int
static
var
buttonIconDimen
:
Int
static
var
buttonPanelSideLayout
:
Int
static
var
buttonStyle
:
Int
static
var
buttonStyleSmall
:
Int
static
var
buttonTint
:
Int
static
var
buttonTintMode
:
Int
static
var
cardBackgroundColor
:
Int
static
var
cardCornerRadius
:
Int
static
var
cardElevation
:
Int
static
var
cardMaxElevation
:
Int
static
var
cardPreventCornerOverlap
:
Int
static
var
cardUseCompatPadding
:
Int
static
var
cardViewStyle
:
Int
static
var
chainUseRtl
:
Int
static
var
checkboxStyle
:
Int
static
var
checkedChip
:
Int
static
var
checkedIcon
:
Int
static
var
checkedIconEnabled
:
Int
static
var
checkedIconVisible
:
Int
static
var
checkedTextViewStyle
:
Int
static
var
chipBackgroundColor
:
Int
static
var
chipCornerRadius
:
Int
static
var
chipEndPadding
:
Int
static
var
chipGroupStyle
:
Int
static
var
chipIcon
:
Int
static
var
chipIconEnabled
:
Int
static
var
chipIconSize
:
Int
static
var
chipIconTint
:
Int
static
var
chipIconVisible
:
Int
static
var
chipMinHeight
:
Int
static
var
chipSpacing
:
Int
static
var
chipSpacingHorizontal
:
Int
static
var
chipSpacingVertical
:
Int
static
var
chipStandaloneStyle
:
Int
static
var
chipStartPadding
:
Int
static
var
chipStrokeColor
:
Int
static
var
chipStrokeWidth
:
Int
static
var
chipStyle
:
Int
static
var
closeIcon
:
Int
static
var
closeIconEnabled
:
Int
static
var
closeIconEndPadding
:
Int
static
var
closeIconSize
:
Int
static
var
closeIconStartPadding
:
Int
static
var
closeIconTint
:
Int
static
var
closeIconVisible
:
Int
static
var
closeItemLayout
:
Int
static
var
collapseContentDescription
:
Int
static
var
collapseIcon
:
Int
static
var
collapsedTitleGravity
:
Int
static
var
collapsedTitleTextAppearance
:
Int
static
var
color
:
Int
static
var
colorAccent
:
Int
static
var
colorBackgroundFloating
:
Int
static
var
colorButtonNormal
:
Int
static
var
colorControlActivated
:
Int
static
var
colorControlHighlight
:
Int
static
var
colorControlNormal
:
Int
static
var
colorError
:
Int
static
var
colorPrimary
:
Int
static
var
colorPrimaryDark
:
Int
static
var
colorSecondary
:
Int
static
var
colorSwitchThumbNormal
:
Int
static
var
commitIcon
:
Int
static
var
constraintSet
:
Int
static
var
constraint_referenced_ids
:
Int
static
var
content
:
Int
static
var
contentDescription
:
Int
static
var
contentInsetEnd
:
Int
static
var
contentInsetEndWithActions
:
Int
static
var
contentInsetLeft
:
Int
static
var
contentInsetRight
:
Int
static
var
contentInsetStart
:
Int
static
var
contentInsetStartWithNavigation
:
Int
static
var
contentPadding
:
Int
static
var
contentPaddingBottom
:
Int
static
var
contentPaddingLeft
:
Int
static
var
contentPaddingRight
:
Int
static
var
contentPaddingTop
:
Int
static
var
contentScrim
:
Int
static
var
controlBackground
:
Int
static
var
coordinatorLayoutStyle
:
Int
static
var
cornerRadius
:
Int
static
var
counterEnabled
:
Int
static
var
counterMaxLength
:
Int
static
var
counterOverflowTextAppearance
:
Int
static
var
counterTextAppearance
:
Int
static
var
customNavigationLayout
:
Int
static
var
defaultQueryHint
:
Int
static
var
dialogCornerRadius
:
Int
static
var
dialogPreferredPadding
:
Int
static
var
dialogTheme
:
Int
static
var
displayOptions
:
Int
static
var
divider
:
Int
static
var
dividerHorizontal
:
Int
static
var
dividerPadding
:
Int
static
var
dividerVertical
:
Int
static
var
drawableSize
:
Int
static
var
drawerArrowStyle
:
Int
static
var
dropDownListViewStyle
:
Int
static
var
dropdownListPreferredItemHeight
:
Int
static
var
editTextBackground
:
Int
static
var
editTextColor
:
Int
static
var
editTextStyle
:
Int
static
var
elevation
:
Int
static
var
emptyVisibility
:
Int
static
var
enforceMaterialTheme
:
Int
static
var
enforceTextAppearance
:
Int
static
var
errorEnabled
:
Int
static
var
errorTextAppearance
:
Int
static
var
expandActivityOverflowButtonDrawable
:
Int
static
var
expanded
:
Int
static
var
expandedTitleGravity
:
Int
static
var
expandedTitleMargin
:
Int
static
var
expandedTitleMarginBottom
:
Int
static
var
expandedTitleMarginEnd
:
Int
static
var
expandedTitleMarginStart
:
Int
static
var
expandedTitleMarginTop
:
Int
static
var
expandedTitleTextAppearance
:
Int
static
var
fabAlignmentMode
:
Int
static
var
fabCradleMargin
:
Int
static
var
fabCradleRoundedCornerRadius
:
Int
static
var
fabCradleVerticalOffset
:
Int
static
var
fabCustomSize
:
Int
static
var
fabSize
:
Int
static
var
fastScrollEnabled
:
Int
static
var
fastScrollHorizontalThumbDrawable
:
Int
static
var
fastScrollHorizontalTrackDrawable
:
Int
static
var
fastScrollVerticalThumbDrawable
:
Int
static
var
fastScrollVerticalTrackDrawable
:
Int
static
var
firstBaselineToTopHeight
:
Int
static
var
floatingActionButtonStyle
:
Int
static
var
font
:
Int
static
var
fontFamily
:
Int
static
var
fontProviderAuthority
:
Int
static
var
fontProviderCerts
:
Int
static
var
fontProviderFetchStrategy
:
Int
static
var
fontProviderFetchTimeout
:
Int
static
var
fontProviderPackage
:
Int
static
var
fontProviderQuery
:
Int
static
var
fontStyle
:
Int
static
var
fontVariationSettings
:
Int
static
var
fontWeight
:
Int
static
var
foregroundInsidePadding
:
Int
static
var
gapBetweenBars
:
Int
static
var
goIcon
:
Int
static
var
headerLayout
:
Int
static
var
height
:
Int
static
var
helperText
:
Int
static
var
helperTextEnabled
:
Int
static
var
helperTextTextAppearance
:
Int
static
var
hideMotionSpec
:
Int
static
var
hideOnContentScroll
:
Int
static
var
hideOnScroll
:
Int
static
var
hintAnimationEnabled
:
Int
static
var
hintEnabled
:
Int
static
var
hintTextAppearance
:
Int
static
var
homeAsUpIndicator
:
Int
static
var
homeLayout
:
Int
static
var
hoveredFocusedTranslationZ
:
Int
static
var
icon
:
Int
static
var
iconEndPadding
:
Int
static
var
iconGravity
:
Int
static
var
iconPadding
:
Int
static
var
iconSize
:
Int
static
var
iconStartPadding
:
Int
static
var
iconTint
:
Int
static
var
iconTintMode
:
Int
static
var
iconifiedByDefault
:
Int
static
var
imageButtonStyle
:
Int
static
var
indeterminateProgressStyle
:
Int
static
var
initialActivityCount
:
Int
static
var
insetForeground
:
Int
static
var
isLightTheme
:
Int
static
var
itemBackground
:
Int
static
var
itemHorizontalPadding
:
Int
static
var
itemHorizontalTranslationEnabled
:
Int
static
var
itemIconPadding
:
Int
static
var
itemIconSize
:
Int
static
var
itemIconTint
:
Int
static
var
itemPadding
:
Int
static
var
itemSpacing
:
Int
static
var
itemTextAppearance
:
Int
static
var
itemTextAppearanceActive
:
Int
static
var
itemTextAppearanceInactive
:
Int
static
var
itemTextColor
:
Int
static
var
keylines
:
Int
static
var
labelVisibilityMode
:
Int
static
var
lastBaselineToBottomHeight
:
Int
static
var
layout
:
Int
static
var
layoutManager
:
Int
static
var
layout_anchor
:
Int
static
var
layout_anchorGravity
:
Int
static
var
layout_behavior
:
Int
static
var
layout_collapseMode
:
Int
static
var
layout_collapseParallaxMultiplier
:
Int
static
var
layout_constrainedHeight
:
Int
static
var
layout_constrainedWidth
:
Int
static
var
layout_constraintBaseline_creator
:
Int
static
var
layout_constraintBaseline_toBaselineOf
:
Int
static
var
layout_constraintBottom_creator
:
Int
static
var
layout_constraintBottom_toBottomOf
:
Int
static
var
layout_constraintBottom_toTopOf
:
Int
static
var
layout_constraintCircle
:
Int
static
var
layout_constraintCircleAngle
:
Int
static
var
layout_constraintCircleRadius
:
Int
static
var
layout_constraintDimensionRatio
:
Int
static
var
layout_constraintEnd_toEndOf
:
Int
static
var
layout_constraintEnd_toStartOf
:
Int
static
var
layout_constraintGuide_begin
:
Int
static
var
layout_constraintGuide_end
:
Int
static
var
layout_constraintGuide_percent
:
Int
static
var
layout_constraintHeight_default
:
Int
static
var
layout_constraintHeight_max
:
Int
static
var
layout_constraintHeight_min
:
Int
static
var
layout_constraintHeight_percent
:
Int
static
var
layout_constraintHorizontal_bias
:
Int
static
var
layout_constraintHorizontal_chainStyle
:
Int
static
var
layout_constraintHorizontal_weight
:
Int
static
var
layout_constraintLeft_creator
:
Int
static
var
layout_constraintLeft_toLeftOf
:
Int
static
var
layout_constraintLeft_toRightOf
:
Int
static
var
layout_constraintRight_creator
:
Int
static
var
layout_constraintRight_toLeftOf
:
Int
static
var
layout_constraintRight_toRightOf
:
Int
static
var
layout_constraintStart_toEndOf
:
Int
static
var
layout_constraintStart_toStartOf
:
Int
static
var
layout_constraintTop_creator
:
Int
static
var
layout_constraintTop_toBottomOf
:
Int
static
var
layout_constraintTop_toTopOf
:
Int
static
var
layout_constraintVertical_bias
:
Int
static
var
layout_constraintVertical_chainStyle
:
Int
static
var
layout_constraintVertical_weight
:
Int
static
var
layout_constraintWidth_default
:
Int
static
var
layout_constraintWidth_max
:
Int
static
var
layout_constraintWidth_min
:
Int
static
var
layout_constraintWidth_percent
:
Int
static
var
layout_dodgeInsetEdges
:
Int
static
var
layout_editor_absoluteX
:
Int
static
var
layout_editor_absoluteY
:
Int
static
var
layout_goneMarginBottom
:
Int
static
var
layout_goneMarginEnd
:
Int
static
var
layout_goneMarginLeft
:
Int
static
var
layout_goneMarginRight
:
Int
static
var
layout_goneMarginStart
:
Int
static
var
layout_goneMarginTop
:
Int
static
var
layout_insetEdge
:
Int
static
var
layout_keyline
:
Int
static
var
layout_optimizationLevel
:
Int
static
var
layout_scrollFlags
:
Int
static
var
layout_scrollInterpolator
:
Int
static
var
liftOnScroll
:
Int
static
var
lineHeight
:
Int
static
var
lineSpacing
:
Int
static
var
listChoiceBackgroundIndicator
:
Int
static
var
listDividerAlertDialog
:
Int
static
var
listItemLayout
:
Int
static
var
listLayout
:
Int
static
var
listMenuViewStyle
:
Int
static
var
listPopupWindowStyle
:
Int
static
var
listPreferredItemHeight
:
Int
static
var
listPreferredItemHeightLarge
:
Int
static
var
listPreferredItemHeightSmall
:
Int
static
var
listPreferredItemPaddingLeft
:
Int
static
var
listPreferredItemPaddingRight
:
Int
static
var
logo
:
Int
static
var
logoDescription
:
Int
static
var
materialButtonStyle
:
Int
static
var
materialCardViewStyle
:
Int
static
var
maxActionInlineWidth
:
Int
static
var
maxButtonHeight
:
Int
static
var
maxImageSize
:
Int
static
var
measureWithLargestChild
:
Int
static
var
menu
:
Int
static
var
multiChoiceItemLayout
:
Int
static
var
navigationContentDescription
:
Int
static
var
navigationIcon
:
Int
static
var
navigationMode
:
Int
static
var
navigationViewStyle
:
Int
static
var
numericModifiers
:
Int
static
var
overlapAnchor
:
Int
static
var
paddingBottomNoButtons
:
Int
static
var
paddingEnd
:
Int
static
var
paddingStart
:
Int
static
var
paddingTopNoTitle
:
Int
static
var
panelBackground
:
Int
static
var
panelMenuListTheme
:
Int
static
var
panelMenuListWidth
:
Int
static
var
passwordToggleContentDescription
:
Int
static
var
passwordToggleDrawable
:
Int
static
var
passwordToggleEnabled
:
Int
static
var
passwordToggleTint
:
Int
static
var
passwordToggleTintMode
:
Int
static
var
popupMenuStyle
:
Int
static
var
popupTheme
:
Int
static
var
popupWindowStyle
:
Int
static
var
preserveIconSpacing
:
Int
static
var
pressedTranslationZ
:
Int
static
var
progressBarPadding
:
Int
static
var
progressBarStyle
:
Int
static
var
queryBackground
:
Int
static
var
queryHint
:
Int
static
var
radioButtonStyle
:
Int
static
var
ratingBarStyle
:
Int
static
var
ratingBarStyleIndicator
:
Int
static
var
ratingBarStyleSmall
:
Int
static
var
reverseLayout
:
Int
static
var
rippleColor
:
Int
static
var
scrimAnimationDuration
:
Int
static
var
scrimBackground
:
Int
static
var
scrimVisibleHeightTrigger
:
Int
static
var
searchHintIcon
:
Int
static
var
searchIcon
:
Int
static
var
searchViewStyle
:
Int
static
var
seekBarStyle
:
Int
static
var
selectableItemBackground
:
Int
static
var
selectableItemBackgroundBorderless
:
Int
static
var
showAsAction
:
Int
static
var
showDividers
:
Int
static
var
showMotionSpec
:
Int
static
var
showText
:
Int
static
var
showTitle
:
Int
static
var
singleChoiceItemLayout
:
Int
static
var
singleLine
:
Int
static
var
singleSelection
:
Int
static
var
snackbarButtonStyle
:
Int
static
var
snackbarStyle
:
Int
static
var
spanCount
:
Int
static
var
spinBars
:
Int
static
var
spinnerDropDownItemStyle
:
Int
static
var
spinnerStyle
:
Int
static
var
splitTrack
:
Int
static
var
srcCompat
:
Int
static
var
stackFromEnd
:
Int
static
var
state_above_anchor
:
Int
static
var
state_collapsed
:
Int
static
var
state_collapsible
:
Int
static
var
state_liftable
:
Int
static
var
state_lifted
:
Int
static
var
statusBarBackground
:
Int
static
var
statusBarScrim
:
Int
static
var
strokeColor
:
Int
static
var
strokeWidth
:
Int
static
var
subMenuArrow
:
Int
static
var
submitBackground
:
Int
static
var
subtitle
:
Int
static
var
subtitleTextAppearance
:
Int
static
var
subtitleTextColor
:
Int
static
var
subtitleTextStyle
:
Int
static
var
suggestionRowLayout
:
Int
static
var
switchMinWidth
:
Int
static
var
switchPadding
:
Int
static
var
switchStyle
:
Int
static
var
switchTextAppearance
:
Int
static
var
tabBackground
:
Int
static
var
tabContentStart
:
Int
static
var
tabGravity
:
Int
static
var
tabIconTint
:
Int
static
var
tabIconTintMode
:
Int
static
var
tabIndicator
:
Int
static
var
tabIndicatorAnimationDuration
:
Int
static
var
tabIndicatorColor
:
Int
static
var
tabIndicatorFullWidth
:
Int
static
var
tabIndicatorGravity
:
Int
static
var
tabIndicatorHeight
:
Int
static
var
tabInlineLabel
:
Int
static
var
tabMaxWidth
:
Int
static
var
tabMinWidth
:
Int
static
var
tabMode
:
Int
static
var
tabPadding
:
Int
static
var
tabPaddingBottom
:
Int
static
var
tabPaddingEnd
:
Int
static
var
tabPaddingStart
:
Int
static
var
tabPaddingTop
:
Int
static
var
tabRippleColor
:
Int
static
var
tabSelectedTextColor
:
Int
static
var
tabStyle
:
Int
static
var
tabTextAppearance
:
Int
static
var
tabTextColor
:
Int
static
var
tabUnboundedRipple
:
Int
static
var
textAllCaps
:
Int
static
var
textAppearanceBody1
:
Int
static
var
textAppearanceBody2
:
Int
static
var
textAppearanceButton
:
Int
static
var
textAppearanceCaption
:
Int
static
var
textAppearanceHeadline1
:
Int
static
var
textAppearanceHeadline2
:
Int
static
var
textAppearanceHeadline3
:
Int
static
var
textAppearanceHeadline4
:
Int
static
var
textAppearanceHeadline5
:
Int
static
var
textAppearanceHeadline6
:
Int
static
var
textAppearanceLargePopupMenu
:
Int
static
var
textAppearanceListItem
:
Int
static
var
textAppearanceListItemSecondary
:
Int
static
var
textAppearanceListItemSmall
:
Int
static
var
textAppearanceOverline
:
Int
static
var
textAppearancePopupMenuHeader
:
Int
static
var
textAppearanceSearchResultSubtitle
:
Int
static
var
textAppearanceSearchResultTitle
:
Int
static
var
textAppearanceSmallPopupMenu
:
Int
static
var
textAppearanceSubtitle1
:
Int
static
var
textAppearanceSubtitle2
:
Int
static
var
textColorAlertDialogListItem
:
Int
static
var
textColorSearchUrl
:
Int
static
var
textEndPadding
:
Int
static
var
textInputStyle
:
Int
static
var
textStartPadding
:
Int
static
var
theme
:
Int
static
var
thickness
:
Int
static
var
thumbTextPadding
:
Int
static
var
thumbTint
:
Int
static
var
thumbTintMode
:
Int
static
var
tickMark
:
Int
static
var
tickMarkTint
:
Int
static
var
tickMarkTintMode
:
Int
static
var
tint
:
Int
static
var
tintMode
:
Int
static
var
title
:
Int
static
var
titleEnabled
:
Int
static
var
titleMargin
:
Int
static
var
titleMarginBottom
:
Int
static
var
titleMarginEnd
:
Int
static
var
titleMarginStart
:
Int
static
var
titleMarginTop
:
Int
static
var
titleMargins
:
Int
static
var
titleTextAppearance
:
Int
static
var
titleTextColor
:
Int
static
var
titleTextStyle
:
Int
static
var
toolbarId
:
Int
static
var
toolbarNavigationButtonStyle
:
Int
static
var
toolbarStyle
:
Int
static
var
tooltipForegroundColor
:
Int
static
var
tooltipFrameBackground
:
Int
static
var
tooltipText
:
Int
static
var
track
:
Int
static
var
trackTint
:
Int
static
var
trackTintMode
:
Int
static
var
ttcIndex
:
Int
static
var
useCompatPadding
:
Int
static
var
viewInflaterClass
:
Int
static
var
voiceIcon
:
Int
static
var
windowActionBar
:
Int
static
var
windowActionBarOverlay
:
Int
static
var
windowActionModeOverlay
:
Int
static
var
windowFixedHeightMajor
:
Int
static
var
windowFixedHeightMinor
:
Int
static
var
windowFixedWidthMajor
:
Int
static
var
windowFixedWidthMinor
:
Int
static
var
windowMinWidthMajor
:
Int
static
var
windowMinWidthMinor
:
Int
static
var
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
var
abc_action_bar_embed_tabs
:
Int
static
var
abc_allow_stacked_button_bar
:
Int
static
var
abc_config_actionMenuItemAllCaps
:
Int
static
var
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
var
abc_background_cache_hint_selector_material_dark
:
Int
static
var
abc_background_cache_hint_selector_material_light
:
Int
static
var
abc_btn_colored_borderless_text_material
:
Int
static
var
abc_btn_colored_text_material
:
Int
static
var
abc_color_highlight_material
:
Int
static
var
abc_hint_foreground_material_dark
:
Int
static
var
abc_hint_foreground_material_light
:
Int
static
var
abc_input_method_navigation_guard
:
Int
static
var
abc_primary_text_disable_only_material_dark
:
Int
static
var
abc_primary_text_disable_only_material_light
:
Int
static
var
abc_primary_text_material_dark
:
Int
static
var
abc_primary_text_material_light
:
Int
static
var
abc_search_url_text
:
Int
static
var
abc_search_url_text_normal
:
Int
static
var
abc_search_url_text_pressed
:
Int
static
var
abc_search_url_text_selected
:
Int
static
var
abc_secondary_text_material_dark
:
Int
static
var
abc_secondary_text_material_light
:
Int
static
var
abc_tint_btn_checkable
:
Int
static
var
abc_tint_default
:
Int
static
var
abc_tint_edittext
:
Int
static
var
abc_tint_seek_thumb
:
Int
static
var
abc_tint_spinner
:
Int
static
var
abc_tint_switch_track
:
Int
static
var
accent_material_dark
:
Int
static
var
accent_material_light
:
Int
static
var
background_floating_material_dark
:
Int
static
var
background_floating_material_light
:
Int
static
var
background_material_dark
:
Int
static
var
background_material_light
:
Int
static
var
bright_foreground_disabled_material_dark
:
Int
static
var
bright_foreground_disabled_material_light
:
Int
static
var
bright_foreground_inverse_material_dark
:
Int
static
var
bright_foreground_inverse_material_light
:
Int
static
var
bright_foreground_material_dark
:
Int
static
var
bright_foreground_material_light
:
Int
static
var
button_material_dark
:
Int
static
var
button_material_light
:
Int
static
var
cardview_dark_background
:
Int
static
var
cardview_light_background
:
Int
static
var
cardview_shadow_end_color
:
Int
static
var
cardview_shadow_start_color
:
Int
static
var
design_bottom_navigation_shadow_color
:
Int
static
var
design_default_color_primary
:
Int
static
var
design_default_color_primary_dark
:
Int
static
var
design_error
:
Int
static
var
design_fab_shadow_end_color
:
Int
static
var
design_fab_shadow_mid_color
:
Int
static
var
design_fab_shadow_start_color
:
Int
static
var
design_fab_stroke_end_inner_color
:
Int
static
var
design_fab_stroke_end_outer_color
:
Int
static
var
design_fab_stroke_top_inner_color
:
Int
static
var
design_fab_stroke_top_outer_color
:
Int
static
var
design_snackbar_background_color
:
Int
static
var
design_tint_password_toggle
:
Int
static
var
dim_foreground_disabled_material_dark
:
Int
static
var
dim_foreground_disabled_material_light
:
Int
static
var
dim_foreground_material_dark
:
Int
static
var
dim_foreground_material_light
:
Int
static
var
errorForegroundColor
:
Int
static
var
error_color_material_dark
:
Int
static
var
error_color_material_light
:
Int
static
var
floatingActiveLabelColor
:
Int
static
var
floatingLabelColor
:
Int
static
var
foreground_material_dark
:
Int
static
var
foreground_material_light
:
Int
static
var
highlighted_text_material_dark
:
Int
static
var
highlighted_text_material_light
:
Int
static
var
hintColor
:
Int
static
var
material_blue_grey_800
:
Int
static
var
material_blue_grey_900
:
Int
static
var
material_blue_grey_950
:
Int
static
var
material_deep_teal_200
:
Int
static
var
material_deep_teal_500
:
Int
static
var
material_grey_100
:
Int
static
var
material_grey_300
:
Int
static
var
material_grey_50
:
Int
static
var
material_grey_600
:
Int
static
var
material_grey_800
:
Int
static
var
material_grey_850
:
Int
static
var
material_grey_900
:
Int
static
var
mtrl_bottom_nav_colored_item_tint
:
Int
static
var
mtrl_bottom_nav_item_tint
:
Int
static
var
mtrl_btn_bg_color_disabled
:
Int
static
var
mtrl_btn_bg_color_selector
:
Int
static
var
mtrl_btn_ripple_color
:
Int
static
var
mtrl_btn_stroke_color_selector
:
Int
static
var
mtrl_btn_text_btn_ripple_color
:
Int
static
var
mtrl_btn_text_color_disabled
:
Int
static
var
mtrl_btn_text_color_selector
:
Int
static
var
mtrl_btn_transparent_bg_color
:
Int
static
var
mtrl_chip_background_color
:
Int
static
var
mtrl_chip_close_icon_tint
:
Int
static
var
mtrl_chip_ripple_color
:
Int
static
var
mtrl_chip_text_color
:
Int
static
var
mtrl_fab_ripple_color
:
Int
static
var
mtrl_scrim_color
:
Int
static
var
mtrl_tabs_colored_ripple_color
:
Int
static
var
mtrl_tabs_icon_color_selector
:
Int
static
var
mtrl_tabs_icon_color_selector_colored
:
Int
static
var
mtrl_tabs_legacy_text_color_selector
:
Int
static
var
mtrl_tabs_ripple_color
:
Int
static
var
mtrl_text_btn_text_color_selector
:
Int
static
var
mtrl_textinput_default_box_stroke_color
:
Int
static
var
mtrl_textinput_disabled_color
:
Int
static
var
mtrl_textinput_filled_box_default_background_color
:
Int
static
var
mtrl_textinput_hovered_box_stroke_color
:
Int
static
var
notification_action_color_filter
:
Int
static
var
notification_icon_bg_color
:
Int
static
var
primaryActiveEditTextColor
:
Int
static
var
primaryEditTextColor
:
Int
static
var
primary_dark_material_dark
:
Int
static
var
primary_dark_material_light
:
Int
static
var
primary_material_dark
:
Int
static
var
primary_material_light
:
Int
static
var
primary_text_default_material_dark
:
Int
static
var
primary_text_default_material_light
:
Int
static
var
primary_text_disabled_material_dark
:
Int
static
var
primary_text_disabled_material_light
:
Int
static
var
ripple_material_dark
:
Int
static
var
ripple_material_light
:
Int
static
var
secondary_text_default_material_dark
:
Int
static
var
secondary_text_default_material_light
:
Int
static
var
secondary_text_disabled_material_dark
:
Int
static
var
secondary_text_disabled_material_light
:
Int
static
var
switch_thumb_disabled_material_dark
:
Int
static
var
switch_thumb_disabled_material_light
:
Int
static
var
switch_thumb_material_dark
:
Int
static
var
switch_thumb_material_light
:
Int
static
var
switch_thumb_normal_material_dark
:
Int
static
var
switch_thumb_normal_material_light
:
Int
static
var
tooltip_background_dark
:
Int
static
var
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
var
abc_action_bar_content_inset_material
:
Int
static
var
abc_action_bar_content_inset_with_nav
:
Int
static
var
abc_action_bar_default_height_material
:
Int
static
var
abc_action_bar_default_padding_end_material
:
Int
static
var
abc_action_bar_default_padding_start_material
:
Int
static
var
abc_action_bar_elevation_material
:
Int
static
var
abc_action_bar_icon_vertical_padding_material
:
Int
static
var
abc_action_bar_overflow_padding_end_material
:
Int
static
var
abc_action_bar_overflow_padding_start_material
:
Int
static
var
abc_action_bar_stacked_max_height
:
Int
static
var
abc_action_bar_stacked_tab_max_width
:
Int
static
var
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
var
abc_action_bar_subtitle_top_margin_material
:
Int
static
var
abc_action_button_min_height_material
:
Int
static
var
abc_action_button_min_width_material
:
Int
static
var
abc_action_button_min_width_overflow_material
:
Int
static
var
abc_alert_dialog_button_bar_height
:
Int
static
var
abc_alert_dialog_button_dimen
:
Int
static
var
abc_button_inset_horizontal_material
:
Int
static
var
abc_button_inset_vertical_material
:
Int
static
var
abc_button_padding_horizontal_material
:
Int
static
var
abc_button_padding_vertical_material
:
Int
static
var
abc_cascading_menus_min_smallest_width
:
Int
static
var
abc_config_prefDialogWidth
:
Int
static
var
abc_control_corner_material
:
Int
static
var
abc_control_inset_material
:
Int
static
var
abc_control_padding_material
:
Int
static
var
abc_dialog_corner_radius_material
:
Int
static
var
abc_dialog_fixed_height_major
:
Int
static
var
abc_dialog_fixed_height_minor
:
Int
static
var
abc_dialog_fixed_width_major
:
Int
static
var
abc_dialog_fixed_width_minor
:
Int
static
var
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
var
abc_dialog_list_padding_top_no_title
:
Int
static
var
abc_dialog_min_width_major
:
Int
static
var
abc_dialog_min_width_minor
:
Int
static
var
abc_dialog_padding_material
:
Int
static
var
abc_dialog_padding_top_material
:
Int
static
var
abc_dialog_title_divider_material
:
Int
static
var
abc_disabled_alpha_material_dark
:
Int
static
var
abc_disabled_alpha_material_light
:
Int
static
var
abc_dropdownitem_icon_width
:
Int
static
var
abc_dropdownitem_text_padding_left
:
Int
static
var
abc_dropdownitem_text_padding_right
:
Int
static
var
abc_edit_text_inset_bottom_material
:
Int
static
var
abc_edit_text_inset_horizontal_material
:
Int
static
var
abc_edit_text_inset_top_material
:
Int
static
var
abc_floating_window_z
:
Int
static
var
abc_list_item_padding_horizontal_material
:
Int
static
var
abc_panel_menu_list_width
:
Int
static
var
abc_progress_bar_height_material
:
Int
static
var
abc_search_view_preferred_height
:
Int
static
var
abc_search_view_preferred_width
:
Int
static
var
abc_seekbar_track_background_height_material
:
Int
static
var
abc_seekbar_track_progress_height_material
:
Int
static
var
abc_select_dialog_padding_start_material
:
Int
static
var
abc_switch_padding
:
Int
static
var
abc_text_size_body_1_material
:
Int
static
var
abc_text_size_body_2_material
:
Int
static
var
abc_text_size_button_material
:
Int
static
var
abc_text_size_caption_material
:
Int
static
var
abc_text_size_display_1_material
:
Int
static
var
abc_text_size_display_2_material
:
Int
static
var
abc_text_size_display_3_material
:
Int
static
var
abc_text_size_display_4_material
:
Int
static
var
abc_text_size_headline_material
:
Int
static
var
abc_text_size_large_material
:
Int
static
var
abc_text_size_medium_material
:
Int
static
var
abc_text_size_menu_header_material
:
Int
static
var
abc_text_size_menu_material
:
Int
static
var
abc_text_size_small_material
:
Int
static
var
abc_text_size_subhead_material
:
Int
static
var
abc_text_size_subtitle_material_toolbar
:
Int
static
var
abc_text_size_title_material
:
Int
static
var
abc_text_size_title_material_toolbar
:
Int
static
var
add_card_expiry_middle_margin
:
Int
static
var
cardview_compat_inset_shadow
:
Int
static
var
cardview_default_elevation
:
Int
static
var
cardview_default_radius
:
Int
static
var
compat_button_inset_horizontal_material
:
Int
static
var
compat_button_inset_vertical_material
:
Int
static
var
compat_button_padding_horizontal_material
:
Int
static
var
compat_button_padding_vertical_material
:
Int
static
var
compat_control_corner_material
:
Int
static
var
compat_notification_large_icon_max_height
:
Int
static
var
compat_notification_large_icon_max_width
:
Int
static
var
design_appbar_elevation
:
Int
static
var
design_bottom_navigation_active_item_max_width
:
Int
static
var
design_bottom_navigation_active_item_min_width
:
Int
static
var
design_bottom_navigation_active_text_size
:
Int
static
var
design_bottom_navigation_elevation
:
Int
static
var
design_bottom_navigation_height
:
Int
static
var
design_bottom_navigation_icon_size
:
Int
static
var
design_bottom_navigation_item_max_width
:
Int
static
var
design_bottom_navigation_item_min_width
:
Int
static
var
design_bottom_navigation_margin
:
Int
static
var
design_bottom_navigation_shadow_height
:
Int
static
var
design_bottom_navigation_text_size
:
Int
static
var
design_bottom_sheet_modal_elevation
:
Int
static
var
design_bottom_sheet_peek_height_min
:
Int
static
var
design_fab_border_width
:
Int
static
var
design_fab_elevation
:
Int
static
var
design_fab_image_size
:
Int
static
var
design_fab_size_mini
:
Int
static
var
design_fab_size_normal
:
Int
static
var
design_fab_translation_z_hovered_focused
:
Int
static
var
design_fab_translation_z_pressed
:
Int
static
var
design_navigation_elevation
:
Int
static
var
design_navigation_icon_padding
:
Int
static
var
design_navigation_icon_size
:
Int
static
var
design_navigation_item_horizontal_padding
:
Int
static
var
design_navigation_item_icon_padding
:
Int
static
var
design_navigation_max_width
:
Int
static
var
design_navigation_padding_bottom
:
Int
static
var
design_navigation_separator_vertical_padding
:
Int
static
var
design_snackbar_action_inline_max_width
:
Int
static
var
design_snackbar_background_corner_radius
:
Int
static
var
design_snackbar_elevation
:
Int
static
var
design_snackbar_extra_spacing_horizontal
:
Int
static
var
design_snackbar_max_width
:
Int
static
var
design_snackbar_min_width
:
Int
static
var
design_snackbar_padding_horizontal
:
Int
static
var
design_snackbar_padding_vertical
:
Int
static
var
design_snackbar_padding_vertical_2lines
:
Int
static
var
design_snackbar_text_size
:
Int
static
var
design_tab_max_width
:
Int
static
var
design_tab_scrollable_min_width
:
Int
static
var
design_tab_text_size
:
Int
static
var
design_tab_text_size_2line
:
Int
static
var
design_textinput_caption_translate_y
:
Int
static
var
disabled_alpha_material_dark
:
Int
static
var
disabled_alpha_material_light
:
Int
static
var
fab_margin
:
Int
static
var
fastscroll_default_thickness
:
Int
static
var
fastscroll_margin
:
Int
static
var
fastscroll_minimum_range
:
Int
static
var
highlight_alpha_material_colored
:
Int
static
var
highlight_alpha_material_dark
:
Int
static
var
highlight_alpha_material_light
:
Int
static
var
hint_alpha_material_dark
:
Int
static
var
hint_alpha_material_light
:
Int
static
var
hint_pressed_alpha_material_dark
:
Int
static
var
hint_pressed_alpha_material_light
:
Int
static
var
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
var
item_touch_helper_swipe_escape_max_velocity
:
Int
static
var
item_touch_helper_swipe_escape_velocity
:
Int
static
var
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
var
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
var
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
var
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
var
mtrl_bottomappbar_height
:
Int
static
var
mtrl_btn_corner_radius
:
Int
static
var
mtrl_btn_dialog_btn_min_width
:
Int
static
var
mtrl_btn_disabled_elevation
:
Int
static
var
mtrl_btn_disabled_z
:
Int
static
var
mtrl_btn_elevation
:
Int
static
var
mtrl_btn_focused_z
:
Int
static
var
mtrl_btn_hovered_z
:
Int
static
var
mtrl_btn_icon_btn_padding_left
:
Int
static
var
mtrl_btn_icon_padding
:
Int
static
var
mtrl_btn_inset
:
Int
static
var
mtrl_btn_letter_spacing
:
Int
static
var
mtrl_btn_padding_bottom
:
Int
static
var
mtrl_btn_padding_left
:
Int
static
var
mtrl_btn_padding_right
:
Int
static
var
mtrl_btn_padding_top
:
Int
static
var
mtrl_btn_pressed_z
:
Int
static
var
mtrl_btn_stroke_size
:
Int
static
var
mtrl_btn_text_btn_icon_padding
:
Int
static
var
mtrl_btn_text_btn_padding_left
:
Int
static
var
mtrl_btn_text_btn_padding_right
:
Int
static
var
mtrl_btn_text_size
:
Int
static
var
mtrl_btn_z
:
Int
static
var
mtrl_card_elevation
:
Int
static
var
mtrl_card_spacing
:
Int
static
var
mtrl_chip_pressed_translation_z
:
Int
static
var
mtrl_chip_text_size
:
Int
static
var
mtrl_fab_elevation
:
Int
static
var
mtrl_fab_translation_z_hovered_focused
:
Int
static
var
mtrl_fab_translation_z_pressed
:
Int
static
var
mtrl_navigation_elevation
:
Int
static
var
mtrl_navigation_item_horizontal_padding
:
Int
static
var
mtrl_navigation_item_icon_padding
:
Int
static
var
mtrl_snackbar_background_corner_radius
:
Int
static
var
mtrl_snackbar_margin
:
Int
static
var
mtrl_textinput_box_bottom_offset
:
Int
static
var
mtrl_textinput_box_corner_radius_medium
:
Int
static
var
mtrl_textinput_box_corner_radius_small
:
Int
static
var
mtrl_textinput_box_label_cutout_padding
:
Int
static
var
mtrl_textinput_box_padding_end
:
Int
static
var
mtrl_textinput_box_stroke_width_default
:
Int
static
var
mtrl_textinput_box_stroke_width_focused
:
Int
static
var
mtrl_textinput_outline_box_expanded_padding
:
Int
static
var
mtrl_toolbar_default_height
:
Int
static
var
notification_action_icon_size
:
Int
static
var
notification_action_text_size
:
Int
static
var
notification_big_circle_margin
:
Int
static
var
notification_content_margin_start
:
Int
static
var
notification_large_icon_height
:
Int
static
var
notification_large_icon_width
:
Int
static
var
notification_main_column_padding_top
:
Int
static
var
notification_media_narrow_margin
:
Int
static
var
notification_right_icon_size
:
Int
static
var
notification_right_side_padding_top
:
Int
static
var
notification_small_icon_background_padding
:
Int
static
var
notification_small_icon_size_as_large
:
Int
static
var
notification_subtext_size
:
Int
static
var
notification_top_pad
:
Int
static
var
notification_top_pad_large_text
:
Int
static
var
tooltip_corner_radius
:
Int
static
var
tooltip_horizontal_padding
:
Int
static
var
tooltip_margin
:
Int
static
var
tooltip_precise_anchor_extra_offset
:
Int
static
var
tooltip_precise_anchor_threshold
:
Int
static
var
tooltip_vertical_padding
:
Int
static
var
tooltip_y_offset_non_touch
:
Int
static
var
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
var
abc_ab_share_pack_mtrl_alpha
:
Int
static
var
abc_action_bar_item_background_material
:
Int
static
var
abc_btn_borderless_material
:
Int
static
var
abc_btn_check_material
:
Int
static
var
abc_btn_check_to_on_mtrl_000
:
Int
static
var
abc_btn_check_to_on_mtrl_015
:
Int
static
var
abc_btn_colored_material
:
Int
static
var
abc_btn_default_mtrl_shape
:
Int
static
var
abc_btn_radio_material
:
Int
static
var
abc_btn_radio_to_on_mtrl_000
:
Int
static
var
abc_btn_radio_to_on_mtrl_015
:
Int
static
var
abc_btn_switch_to_on_mtrl_00001
:
Int
static
var
abc_btn_switch_to_on_mtrl_00012
:
Int
static
var
abc_cab_background_internal_bg
:
Int
static
var
abc_cab_background_top_material
:
Int
static
var
abc_cab_background_top_mtrl_alpha
:
Int
static
var
abc_control_background_material
:
Int
static
var
abc_dialog_material_background
:
Int
static
var
abc_edit_text_material
:
Int
static
var
abc_ic_ab_back_material
:
Int
static
var
abc_ic_arrow_drop_right_black_24dp
:
Int
static
var
abc_ic_clear_material
:
Int
static
var
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
var
abc_ic_go_search_api_material
:
Int
static
var
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_cut_mtrl_alpha
:
Int
static
var
abc_ic_menu_overflow_material
:
Int
static
var
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
var
abc_ic_menu_share_mtrl_alpha
:
Int
static
var
abc_ic_search_api_material
:
Int
static
var
abc_ic_star_black_16dp
:
Int
static
var
abc_ic_star_black_36dp
:
Int
static
var
abc_ic_star_black_48dp
:
Int
static
var
abc_ic_star_half_black_16dp
:
Int
static
var
abc_ic_star_half_black_36dp
:
Int
static
var
abc_ic_star_half_black_48dp
:
Int
static
var
abc_ic_voice_search_api_material
:
Int
static
var
abc_item_background_holo_dark
:
Int
static
var
abc_item_background_holo_light
:
Int
static
var
abc_list_divider_material
:
Int
static
var
abc_list_divider_mtrl_alpha
:
Int
static
var
abc_list_focused_holo
:
Int
static
var
abc_list_longpressed_holo
:
Int
static
var
abc_list_pressed_holo_dark
:
Int
static
var
abc_list_pressed_holo_light
:
Int
static
var
abc_list_selector_background_transition_holo_dark
:
Int
static
var
abc_list_selector_background_transition_holo_light
:
Int
static
var
abc_list_selector_disabled_holo_dark
:
Int
static
var
abc_list_selector_disabled_holo_light
:
Int
static
var
abc_list_selector_holo_dark
:
Int
static
var
abc_list_selector_holo_light
:
Int
static
var
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
var
abc_popup_background_mtrl_mult
:
Int
static
var
abc_ratingbar_indicator_material
:
Int
static
var
abc_ratingbar_material
:
Int
static
var
abc_ratingbar_small_material
:
Int
static
var
abc_scrubber_control_off_mtrl_alpha
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
var
abc_scrubber_primary_mtrl_alpha
:
Int
static
var
abc_scrubber_track_mtrl_alpha
:
Int
static
var
abc_seekbar_thumb_material
:
Int
static
var
abc_seekbar_tick_mark_material
:
Int
static
var
abc_seekbar_track_material
:
Int
static
var
abc_spinner_mtrl_am_alpha
:
Int
static
var
abc_spinner_textfield_background_material
:
Int
static
var
abc_switch_thumb_material
:
Int
static
var
abc_switch_track_mtrl_alpha
:
Int
static
var
abc_tab_indicator_material
:
Int
static
var
abc_tab_indicator_mtrl_alpha
:
Int
static
var
abc_text_cursor_material
:
Int
static
var
abc_text_select_handle_left_mtrl_dark
:
Int
static
var
abc_text_select_handle_left_mtrl_light
:
Int
static
var
abc_text_select_handle_middle_mtrl_dark
:
Int
static
var
abc_text_select_handle_middle_mtrl_light
:
Int
static
var
abc_text_select_handle_right_mtrl_dark
:
Int
static
var
abc_text_select_handle_right_mtrl_light
:
Int
static
var
abc_textfield_activated_mtrl_alpha
:
Int
static
var
abc_textfield_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_activated_mtrl_alpha
:
Int
static
var
abc_textfield_search_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_material
:
Int
static
var
abc_vector_test
:
Int
static
var
american_express
:
Int
static
var
avd_hide_password
:
Int
static
var
avd_show_password
:
Int
static
var
card
:
Int
static
var
cvc
:
Int
static
var
design_bottom_navigation_item_background
:
Int
static
var
design_fab_background
:
Int
static
var
design_ic_visibility
:
Int
static
var
design_ic_visibility_off
:
Int
static
var
design_password_eye
:
Int
static
var
design_snackbar_background
:
Int
static
var
dinners_club
:
Int
static
var
edit_text_color
:
Int
static
var
expiry_date
:
Int
static
var
ic_mtrl_chip_checked_black
:
Int
static
var
ic_mtrl_chip_checked_circle
:
Int
static
var
ic_mtrl_chip_close_circle
:
Int
static
var
mastercard
:
Int
static
var
mtrl_snackbar_background
:
Int
static
var
mtrl_tabs_default_indicator
:
Int
static
var
navigation_empty_icon
:
Int
static
var
notification_action_background
:
Int
static
var
notification_bg
:
Int
static
var
notification_bg_low
:
Int
static
var
notification_bg_low_normal
:
Int
static
var
notification_bg_low_pressed
:
Int
static
var
notification_bg_normal
:
Int
static
var
notification_bg_normal_pressed
:
Int
static
var
notification_icon_background
:
Int
static
var
notification_template_icon_bg
:
Int
static
var
notification_template_icon_low_bg
:
Int
static
var
notification_tile_bg
:
Int
static
var
notify_panel_notification_icon_bg
:
Int
static
var
tooltip_frame_dark
:
Int
static
var
tooltip_frame_light
:
Int
static
var
visa
:
Int
class
id
Module Contents
id
(
)
static
var
action_bar
:
Int
static
var
action_bar_activity_content
:
Int
static
var
action_bar_container
:
Int
static
var
action_bar_root
:
Int
static
var
action_bar_spinner
:
Int
static
var
action_bar_subtitle
:
Int
static
var
action_bar_title
:
Int
static
var
action_container
:
Int
static
var
action_context_bar
:
Int
static
var
action_divider
:
Int
static
var
action_image
:
Int
static
var
action_menu_divider
:
Int
static
var
action_menu_presenter
:
Int
static
var
action_mode_bar
:
Int
static
var
action_mode_bar_stub
:
Int
static
var
action_mode_close_button
:
Int
static
var
action_text
:
Int
static
var
actions
:
Int
static
var
activity_chooser_view_content
:
Int
static
var
add
:
Int
static
var
alertTitle
:
Int
static
var
async
:
Int
static
var
auto
:
Int
static
var
barrier
:
Int
static
var
blocking
:
Int
static
var
bottom
:
Int
static
var
buttonPanel
:
Int
static
var
center
:
Int
static
var
chains
:
Int
static
var
checkbox
:
Int
static
var
chronometer
:
Int
static
var
container
:
Int
static
var
content
:
Int
static
var
contentPanel
:
Int
static
var
coordinator
:
Int
static
var
custom
:
Int
static
var
customPanel
:
Int
static
var
decor_content_parent
:
Int
static
var
default_activity_button
:
Int
static
var
design_bottom_sheet
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_menu_item_action_area_stub
:
Int
static
var
design_menu_item_text
:
Int
static
var
design_navigation_view
:
Int
static
var
dimensions
:
Int
static
var
direct
:
Int
static
var
edit_query
:
Int
static
var
edit_text_card_number
:
Int
static
var
edit_text_expiry_date
:
Int
static
var
edit_text_security_code
:
Int
static
var
end
:
Int
static
var
expand_activities_button
:
Int
static
var
expanded_menu
:
Int
static
var
fill
:
Int
static
var
filled
:
Int
static
var
fixed
:
Int
static
var
forever
:
Int
static
var
ghost_view
:
Int
static
var
gone
:
Int
static
var
group_divider
:
Int
static
var
home
:
Int
static
var
icon
:
Int
static
var
icon_group
:
Int
static
var
image
:
Int
static
var
info
:
Int
static
var
invisible
:
Int
static
var
italic
:
Int
static
var
item_touch_helper_previous_elevation
:
Int
static
var
labeled
:
Int
static
var
largeLabel
:
Int
static
var
left
:
Int
static
var
line1
:
Int
static
var
line3
:
Int
static
var
listMode
:
Int
static
var
list_item
:
Int
static
var
masked
:
Int
static
var
message
:
Int
static
var
mini
:
Int
static
var
mtrl_child_content_container
:
Int
static
var
mtrl_internal_children_alpha_tag
:
Int
static
var
multiply
:
Int
static
var
navigation_header_container
:
Int
static
var
none
:
Int
static
var
normal
:
Int
static
var
notification_background
:
Int
static
var
notification_main_column
:
Int
static
var
notification_main_column_container
:
Int
static
var
outline
:
Int
static
var
packed
:
Int
static
var
parallax
:
Int
static
var
parent
:
Int
static
var
parentPanel
:
Int
static
var
parent_matrix
:
Int
static
var
percent
:
Int
static
var
pin
:
Int
static
var
progress_circular
:
Int
static
var
progress_horizontal
:
Int
static
var
radio
:
Int
static
var
right
:
Int
static
var
right_icon
:
Int
static
var
right_side
:
Int
static
var
save_image_matrix
:
Int
static
var
save_non_transition_alpha
:
Int
static
var
save_scale_type
:
Int
static
var
screen
:
Int
static
var
scrollIndicatorDown
:
Int
static
var
scrollIndicatorUp
:
Int
static
var
scrollView
:
Int
static
var
scrollable
:
Int
static
var
search_badge
:
Int
static
var
search_bar
:
Int
static
var
search_button
:
Int
static
var
search_close_btn
:
Int
static
var
search_edit_frame
:
Int
static
var
search_go_btn
:
Int
static
var
search_mag_icon
:
Int
static
var
search_plate
:
Int
static
var
search_src_text
:
Int
static
var
search_voice_btn
:
Int
static
var
second_row_layout
:
Int
static
var
select_dialog_listview
:
Int
static
var
selected
:
Int
static
var
shortcut
:
Int
static
var
smallLabel
:
Int
static
var
snackbar_action
:
Int
static
var
snackbar_text
:
Int
static
var
spacer
:
Int
static
var
split_action_bar
:
Int
static
var
spread
:
Int
static
var
spread_inside
:
Int
static
var
src_atop
:
Int
static
var
src_in
:
Int
static
var
src_over
:
Int
static
var
standard
:
Int
static
var
start
:
Int
static
var
stretch
:
Int
static
var
submenuarrow
:
Int
static
var
submit_area
:
Int
static
var
tabMode
:
Int
static
var
tag_transition_group
:
Int
static
var
tag_unhandled_key_event_manager
:
Int
static
var
tag_unhandled_key_listeners
:
Int
static
var
text
:
Int
static
var
text2
:
Int
static
var
textSpacerNoButtons
:
Int
static
var
textSpacerNoTitle
:
Int
static
var
text_input_password_toggle
:
Int
static
var
text_layout_card_number
:
Int
static
var
text_layout_expiry_date
:
Int
static
var
text_layout_security_code
:
Int
static
var
textinput_counter
:
Int
static
var
textinput_error
:
Int
static
var
textinput_helper_text
:
Int
static
var
time
:
Int
static
var
title
:
Int
static
var
titleDividerNoCustom
:
Int
static
var
title_template
:
Int
static
var
top
:
Int
static
var
topPanel
:
Int
static
var
touch_outside
:
Int
static
var
transition_current_scene
:
Int
static
var
transition_layout_save
:
Int
static
var
transition_position
:
Int
static
var
transition_scene_layoutid_cache
:
Int
static
var
transition_transform
:
Int
static
var
uniform
:
Int
static
var
unlabeled
:
Int
static
var
up
:
Int
static
var
view_offset_helper
:
Int
static
var
visible
:
Int
static
var
wrap
:
Int
static
var
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
var
abc_config_activityDefaultDur
:
Int
static
var
abc_config_activityShortDur
:
Int
static
var
app_bar_elevation_anim_duration
:
Int
static
var
bottom_sheet_slide_duration
:
Int
static
var
cancel_button_image_alpha
:
Int
static
var
config_tooltipAnimTime
:
Int
static
var
design_snackbar_text_max_lines
:
Int
static
var
design_tab_indicator_anim_duration_ms
:
Int
static
var
hide_password_duration
:
Int
static
var
mtrl_btn_anim_delay_ms
:
Int
static
var
mtrl_btn_anim_duration_ms
:
Int
static
var
mtrl_chip_anim_duration
:
Int
static
var
mtrl_tab_indicator_anim_duration_ms
:
Int
static
var
show_password_duration
:
Int
static
var
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
var
mtrl_fast_out_linear_in
:
Int
static
var
mtrl_fast_out_slow_in
:
Int
static
var
mtrl_linear
:
Int
static
var
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
var
abc_action_bar_title_item
:
Int
static
var
abc_action_bar_up_container
:
Int
static
var
abc_action_menu_item_layout
:
Int
static
var
abc_action_menu_layout
:
Int
static
var
abc_action_mode_bar
:
Int
static
var
abc_action_mode_close_item_material
:
Int
static
var
abc_activity_chooser_view
:
Int
static
var
abc_activity_chooser_view_list_item
:
Int
static
var
abc_alert_dialog_button_bar_material
:
Int
static
var
abc_alert_dialog_material
:
Int
static
var
abc_alert_dialog_title_material
:
Int
static
var
abc_cascading_menu_item_layout
:
Int
static
var
abc_dialog_title_material
:
Int
static
var
abc_expanded_menu_layout
:
Int
static
var
abc_list_menu_item_checkbox
:
Int
static
var
abc_list_menu_item_icon
:
Int
static
var
abc_list_menu_item_layout
:
Int
static
var
abc_list_menu_item_radio
:
Int
static
var
abc_popup_menu_header_item_layout
:
Int
static
var
abc_popup_menu_item_layout
:
Int
static
var
abc_screen_content_include
:
Int
static
var
abc_screen_simple
:
Int
static
var
abc_screen_simple_overlay_action_mode
:
Int
static
var
abc_screen_toolbar
:
Int
static
var
abc_search_dropdown_item_icons_2line
:
Int
static
var
abc_search_view
:
Int
static
var
abc_select_dialog_material
:
Int
static
var
abc_tooltip
:
Int
static
var
add_card_widget
:
Int
static
var
design_bottom_navigation_item
:
Int
static
var
design_bottom_sheet_dialog
:
Int
static
var
design_layout_snackbar
:
Int
static
var
design_layout_snackbar_include
:
Int
static
var
design_layout_tab_icon
:
Int
static
var
design_layout_tab_text
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_navigation_item
:
Int
static
var
design_navigation_item_header
:
Int
static
var
design_navigation_item_separator
:
Int
static
var
design_navigation_item_subheader
:
Int
static
var
design_navigation_menu
:
Int
static
var
design_navigation_menu_item
:
Int
static
var
design_text_input_password_icon
:
Int
static
var
mtrl_layout_snackbar
:
Int
static
var
mtrl_layout_snackbar_include
:
Int
static
var
notification_action
:
Int
static
var
notification_action_tombstone
:
Int
static
var
notification_template_custom_big
:
Int
static
var
notification_template_icon_group
:
Int
static
var
notification_template_part_chronometer
:
Int
static
var
notification_template_part_time
:
Int
static
var
select_dialog_item_material
:
Int
static
var
select_dialog_multichoice_material
:
Int
static
var
select_dialog_singlechoice_material
:
Int
static
var
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
string
(
)
static
var
abc_action_bar_home_description
:
Int
static
var
abc_action_bar_up_description
:
Int
static
var
abc_action_menu_overflow_description
:
Int
static
var
abc_action_mode_done
:
Int
static
var
abc_activity_chooser_view_see_all
:
Int
static
var
abc_activitychooserview_choose_application
:
Int
static
var
abc_capital_off
:
Int
static
var
abc_capital_on
:
Int
static
var
abc_font_family_body_1_material
:
Int
static
var
abc_font_family_body_2_material
:
Int
static
var
abc_font_family_button_material
:
Int
static
var
abc_font_family_caption_material
:
Int
static
var
abc_font_family_display_1_material
:
Int
static
var
abc_font_family_display_2_material
:
Int
static
var
abc_font_family_display_3_material
:
Int
static
var
abc_font_family_display_4_material
:
Int
static
var
abc_font_family_headline_material
:
Int
static
var
abc_font_family_menu_material
:
Int
static
var
abc_font_family_subhead_material
:
Int
static
var
abc_font_family_title_material
:
Int
static
var
abc_menu_alt_shortcut_label
:
Int
static
var
abc_menu_ctrl_shortcut_label
:
Int
static
var
abc_menu_delete_shortcut_label
:
Int
static
var
abc_menu_enter_shortcut_label
:
Int
static
var
abc_menu_function_shortcut_label
:
Int
static
var
abc_menu_meta_shortcut_label
:
Int
static
var
abc_menu_shift_shortcut_label
:
Int
static
var
abc_menu_space_shortcut_label
:
Int
static
var
abc_menu_sym_shortcut_label
:
Int
static
var
abc_prepend_shortcut_label
:
Int
static
var
abc_search_hint
:
Int
static
var
abc_searchview_description_clear
:
Int
static
var
abc_searchview_description_query
:
Int
static
var
abc_searchview_description_search
:
Int
static
var
abc_searchview_description_submit
:
Int
static
var
abc_searchview_description_voice
:
Int
static
var
abc_shareactionprovider_share_with
:
Int
static
var
abc_shareactionprovider_share_with_application
:
Int
static
var
abc_toolbar_collapse_description
:
Int
static
var
app_name
:
Int
static
var
appbar_scrolling_view_behavior
:
Int
static
var
bottom_sheet_behavior
:
Int
static
var
card_number_hint
:
Int
static
var
character_counter_content_description
:
Int
static
var
character_counter_pattern
:
Int
static
var
error_card_number
:
Int
static
var
error_expiry_date
:
Int
static
var
error_security_code
:
Int
static
var
expiry_date_hint
:
Int
static
var
fab_transformation_scrim_behavior
:
Int
static
var
fab_transformation_sheet_behavior
:
Int
static
var
hide_bottom_view_on_scroll_behavior
:
Int
static
var
label_card_number
:
Int
static
var
label_expiry_date
:
Int
static
var
label_security_code
:
Int
static
var
mtrl_chip_close_icon_content_description
:
Int
static
var
password_toggle_content_description
:
Int
static
var
path_password_eye
:
Int
static
var
path_password_eye_mask_strike_through
:
Int
static
var
path_password_eye_mask_visible
:
Int
static
var
path_password_strike_through
:
Int
static
var
search_menu_title
:
Int
static
var
security_code_hint_3
:
Int
static
var
security_code_hint_4
:
Int
static
var
status_bar_notification_info_overflow
:
Int
static
var
title_activity_add_card
:
Int
static
var
valid_digits
:
Int
class
style
Module Contents
style
(
)
static
var
AlertDialog_AppCompat
:
Int
static
var
AlertDialog_AppCompat_Light
:
Int
static
var
Animation_AppCompat_Dialog
:
Int
static
var
Animation_AppCompat_DropDownUp
:
Int
static
var
Animation_AppCompat_Tooltip
:
Int
static
var
Animation_Design_BottomSheetDialog
:
Int
static
var
AppTheme
:
Int
static
var
AppTheme_AppBarOverlay
:
Int
static
var
AppTheme_NoActionBar
:
Int
static
var
AppTheme_PopupOverlay
:
Int
static
var
Base_AlertDialog_AppCompat
:
Int
static
var
Base_AlertDialog_AppCompat_Light
:
Int
static
var
Base_Animation_AppCompat_Dialog
:
Int
static
var
Base_Animation_AppCompat_DropDownUp
:
Int
static
var
Base_Animation_AppCompat_Tooltip
:
Int
static
var
Base_CardView
:
Int
static
var
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
var
Base_DialogWindowTitle_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat_Body1
:
Int
static
var
Base_TextAppearance_AppCompat_Body2
:
Int
static
var
Base_TextAppearance_AppCompat_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Caption
:
Int
static
var
Base_TextAppearance_AppCompat_Display1
:
Int
static
var
Base_TextAppearance_AppCompat_Display2
:
Int
static
var
Base_TextAppearance_AppCompat_Display3
:
Int
static
var
Base_TextAppearance_AppCompat_Display4
:
Int
static
var
Base_TextAppearance_AppCompat_Headline
:
Int
static
var
Base_TextAppearance_AppCompat_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Medium
:
Int
static
var
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
Base_ThemeOverlay_AppCompat
:
Int
static
var
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
Base_ThemeOverlay_AppCompat_Light
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat
:
Int
static
var
Base_Theme_AppCompat_CompactMenu
:
Int
static
var
Base_Theme_AppCompat_Dialog
:
Int
static
var
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Base_Theme_AppCompat_Light
:
Int
static
var
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents
:
Int
static
var
Base_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
var
Base_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents_Light
:
Int
static
var
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_V14_Theme_MaterialComponents
:
Int
static
var
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat
:
Int
static
var
Base_V21_Theme_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat_Light
:
Int
static
var
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V22_Theme_AppCompat
:
Int
static
var
Base_V22_Theme_AppCompat_Light
:
Int
static
var
Base_V23_Theme_AppCompat
:
Int
static
var
Base_V23_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Theme_AppCompat
:
Int
static
var
Base_V26_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
var
Base_V28_Theme_AppCompat
:
Int
static
var
Base_V28_Theme_AppCompat_Light
:
Int
static
var
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat
:
Int
static
var
Base_V7_Theme_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat_Light
:
Int
static
var
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_V7_Widget_AppCompat_EditText
:
Int
static
var
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_ActionBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_ActionButton
:
Int
static
var
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Base_Widget_AppCompat_ActionMode
:
Int
static
var
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
var
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_Widget_AppCompat_Button
:
Int
static
var
Base_Widget_AppCompat_ButtonBar
:
Int
static
var
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_Small
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
var
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Base_Widget_AppCompat_EditText
:
Int
static
var
Base_Widget_AppCompat_ImageButton
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_ListMenuView
:
Int
static
var
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
var
Base_Widget_AppCompat_ListView
:
Int
static
var
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
var
Base_Widget_AppCompat_ListView_Menu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_PopupWindow
:
Int
static
var
Base_Widget_AppCompat_ProgressBar
:
Int
static
var
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Base_Widget_AppCompat_RatingBar
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
var
Base_Widget_AppCompat_SearchView
:
Int
static
var
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Base_Widget_AppCompat_Spinner
:
Int
static
var
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Base_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Base_Widget_Design_TabLayout
:
Int
static
var
Base_Widget_MaterialComponents_Chip
:
Int
static
var
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
var
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
var
CardView
:
Int
static
var
CardView_Dark
:
Int
static
var
CardView_Light
:
Int
static
var
PHEditTextStyle
:
Int
static
var
PHErrorAppearanceStyle
:
Int
static
var
PHTextInputLayoutStyle
:
Int
static
var
Platform_AppCompat
:
Int
static
var
Platform_AppCompat_Light
:
Int
static
var
Platform_MaterialComponents
:
Int
static
var
Platform_MaterialComponents_Dialog
:
Int
static
var
Platform_MaterialComponents_Light
:
Int
static
var
Platform_MaterialComponents_Light_Dialog
:
Int
static
var
Platform_ThemeOverlay_AppCompat
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
var
Platform_V21_AppCompat
:
Int
static
var
Platform_V21_AppCompat_Light
:
Int
static
var
Platform_V25_AppCompat
:
Int
static
var
Platform_V25_AppCompat_Light
:
Int
static
var
Platform_Widget_AppCompat_Spinner
:
Int
static
var
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
var
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
var
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
TextAppearance_AppCompat
:
Int
static
var
TextAppearance_AppCompat_Body1
:
Int
static
var
TextAppearance_AppCompat_Body2
:
Int
static
var
TextAppearance_AppCompat_Button
:
Int
static
var
TextAppearance_AppCompat_Caption
:
Int
static
var
TextAppearance_AppCompat_Display1
:
Int
static
var
TextAppearance_AppCompat_Display2
:
Int
static
var
TextAppearance_AppCompat_Display3
:
Int
static
var
TextAppearance_AppCompat_Display4
:
Int
static
var
TextAppearance_AppCompat_Headline
:
Int
static
var
TextAppearance_AppCompat_Inverse
:
Int
static
var
TextAppearance_AppCompat_Large
:
Int
static
var
TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Medium
:
Int
static
var
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
TextAppearance_AppCompat_Menu
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Small
:
Int
static
var
TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
TextAppearance_AppCompat_Subhead
:
Int
static
var
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
TextAppearance_AppCompat_Title
:
Int
static
var
TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Tooltip
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_Button
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
TextAppearance_Compat_Notification
:
Int
static
var
TextAppearance_Compat_Notification_Info
:
Int
static
var
TextAppearance_Compat_Notification_Line2
:
Int
static
var
TextAppearance_Compat_Notification_Time
:
Int
static
var
TextAppearance_Compat_Notification_Title
:
Int
static
var
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
var
TextAppearance_Design_Counter
:
Int
static
var
TextAppearance_Design_Counter_Overflow
:
Int
static
var
TextAppearance_Design_Error
:
Int
static
var
TextAppearance_Design_HelperText
:
Int
static
var
TextAppearance_Design_Hint
:
Int
static
var
TextAppearance_Design_Snackbar_Message
:
Int
static
var
TextAppearance_Design_Tab
:
Int
static
var
TextAppearance_MaterialComponents_Body1
:
Int
static
var
TextAppearance_MaterialComponents_Body2
:
Int
static
var
TextAppearance_MaterialComponents_Button
:
Int
static
var
TextAppearance_MaterialComponents_Caption
:
Int
static
var
TextAppearance_MaterialComponents_Chip
:
Int
static
var
TextAppearance_MaterialComponents_Headline1
:
Int
static
var
TextAppearance_MaterialComponents_Headline2
:
Int
static
var
TextAppearance_MaterialComponents_Headline3
:
Int
static
var
TextAppearance_MaterialComponents_Headline4
:
Int
static
var
TextAppearance_MaterialComponents_Headline5
:
Int
static
var
TextAppearance_MaterialComponents_Headline6
:
Int
static
var
TextAppearance_MaterialComponents_Overline
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
var
TextAppearance_MaterialComponents_Tab
:
Int
static
var
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
ThemeOverlay_AppCompat
:
Int
static
var
ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dark
:
Int
static
var
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dialog
:
Int
static
var
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
ThemeOverlay_AppCompat_Light
:
Int
static
var
ThemeOverlay_MaterialComponents
:
Int
static
var
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
ThemeOverlay_MaterialComponents_Light
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Theme_AppCompat
:
Int
static
var
Theme_AppCompat_CompactMenu
:
Int
static
var
Theme_AppCompat_DayNight
:
Int
static
var
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
var
Theme_AppCompat_DayNight_Dialog
:
Int
static
var
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
var
Theme_AppCompat_Dialog
:
Int
static
var
Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light
:
Int
static
var
Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Theme_AppCompat_Light_Dialog
:
Int
static
var
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light_NoActionBar
:
Int
static
var
Theme_AppCompat_NoActionBar
:
Int
static
var
Theme_Design
:
Int
static
var
Theme_Design_BottomSheetDialog
:
Int
static
var
Theme_Design_Light
:
Int
static
var
Theme_Design_Light_BottomSheetDialog
:
Int
static
var
Theme_Design_Light_NoActionBar
:
Int
static
var
Theme_Design_NoActionBar
:
Int
static
var
Theme_MaterialComponents
:
Int
static
var
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Bridge
:
Int
static
var
Theme_MaterialComponents_CompactMenu
:
Int
static
var
Theme_MaterialComponents_Dialog
:
Int
static
var
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light
:
Int
static
var
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_NoActionBar
:
Int
static
var
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
var
Widget_AppCompat_ActionBar
:
Int
static
var
Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_ActionButton
:
Int
static
var
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_ActionMode
:
Int
static
var
Widget_AppCompat_ActivityChooserView
:
Int
static
var
Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Button
:
Int
static
var
Widget_AppCompat_ButtonBar
:
Int
static
var
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Borderless
:
Int
static
var
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Colored
:
Int
static
var
Widget_AppCompat_Button_Small
:
Int
static
var
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_EditText
:
Int
static
var
Widget_AppCompat_ImageButton
:
Int
static
var
Widget_AppCompat_Light_ActionBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionButton
:
Int
static
var
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
var
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
var
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
var
Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_Light_SearchView
:
Int
static
var
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_ListMenuView
:
Int
static
var
Widget_AppCompat_ListPopupWindow
:
Int
static
var
Widget_AppCompat_ListView
:
Int
static
var
Widget_AppCompat_ListView_DropDown
:
Int
static
var
Widget_AppCompat_ListView_Menu
:
Int
static
var
Widget_AppCompat_PopupMenu
:
Int
static
var
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_PopupWindow
:
Int
static
var
Widget_AppCompat_ProgressBar
:
Int
static
var
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Widget_AppCompat_RatingBar
:
Int
static
var
Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Widget_AppCompat_RatingBar_Small
:
Int
static
var
Widget_AppCompat_SearchView
:
Int
static
var
Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Widget_AppCompat_SeekBar
:
Int
static
var
Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Widget_AppCompat_Spinner
:
Int
static
var
Widget_AppCompat_Spinner_DropDown
:
Int
static
var
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Widget_AppCompat_Toolbar
:
Int
static
var
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Widget_Compat_NotificationActionContainer
:
Int
static
var
Widget_Compat_NotificationActionText
:
Int
static
var
Widget_Design_AppBarLayout
:
Int
static
var
Widget_Design_BottomNavigationView
:
Int
static
var
Widget_Design_BottomSheet_Modal
:
Int
static
var
Widget_Design_CollapsingToolbar
:
Int
static
var
Widget_Design_FloatingActionButton
:
Int
static
var
Widget_Design_NavigationView
:
Int
static
var
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
var
Widget_Design_Snackbar
:
Int
static
var
Widget_Design_TabLayout
:
Int
static
var
Widget_Design_TextInputLayout
:
Int
static
var
Widget_MaterialComponents_BottomAppBar
:
Int
static
var
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
var
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
var
Widget_MaterialComponents_Button
:
Int
static
var
Widget_MaterialComponents_Button_Icon
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
var
Widget_MaterialComponents_CardView
:
Int
static
var
Widget_MaterialComponents_ChipGroup
:
Int
static
var
Widget_MaterialComponents_Chip_Action
:
Int
static
var
Widget_MaterialComponents_Chip_Choice
:
Int
static
var
Widget_MaterialComponents_Chip_Entry
:
Int
static
var
Widget_MaterialComponents_Chip_Filter
:
Int
static
var
Widget_MaterialComponents_FloatingActionButton
:
Int
static
var
Widget_MaterialComponents_NavigationView
:
Int
static
var
Widget_MaterialComponents_Snackbar
:
Int
static
var
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
var
Widget_MaterialComponents_TabLayout
:
Int
static
var
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_Toolbar
:
Int
static
var
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
var
ActionBar
:
IntArray
static
var
ActionBarLayout
:
IntArray
static
var
ActionBarLayout_android_layout_gravity
:
Int
static
var
ActionBar_background
:
Int
static
var
ActionBar_backgroundSplit
:
Int
static
var
ActionBar_backgroundStacked
:
Int
static
var
ActionBar_contentInsetEnd
:
Int
static
var
ActionBar_contentInsetEndWithActions
:
Int
static
var
ActionBar_contentInsetLeft
:
Int
static
var
ActionBar_contentInsetRight
:
Int
static
var
ActionBar_contentInsetStart
:
Int
static
var
ActionBar_contentInsetStartWithNavigation
:
Int
static
var
ActionBar_customNavigationLayout
:
Int
static
var
ActionBar_displayOptions
:
Int
static
var
ActionBar_divider
:
Int
static
var
ActionBar_elevation
:
Int
static
var
ActionBar_height
:
Int
static
var
ActionBar_hideOnContentScroll
:
Int
static
var
ActionBar_homeAsUpIndicator
:
Int
static
var
ActionBar_homeLayout
:
Int
static
var
ActionBar_icon
:
Int
static
var
ActionBar_indeterminateProgressStyle
:
Int
static
var
ActionBar_itemPadding
:
Int
static
var
ActionBar_logo
:
Int
static
var
ActionBar_navigationMode
:
Int
static
var
ActionBar_popupTheme
:
Int
static
var
ActionBar_progressBarPadding
:
Int
static
var
ActionBar_progressBarStyle
:
Int
static
var
ActionBar_subtitle
:
Int
static
var
ActionBar_subtitleTextStyle
:
Int
static
var
ActionBar_title
:
Int
static
var
ActionBar_titleTextStyle
:
Int
static
var
ActionMenuItemView
:
IntArray
static
var
ActionMenuItemView_android_minWidth
:
Int
static
var
ActionMode
:
IntArray
static
var
ActionMode_background
:
Int
static
var
ActionMode_backgroundSplit
:
Int
static
var
ActionMode_closeItemLayout
:
Int
static
var
ActionMode_height
:
Int
static
var
ActionMode_subtitleTextStyle
:
Int
static
var
ActionMode_titleTextStyle
:
Int
static
var
ActivityChooserView
:
IntArray
static
var
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
var
ActivityChooserView_initialActivityCount
:
Int
static
var
AlertDialog
:
IntArray
static
var
AlertDialog_android_layout
:
Int
static
var
AlertDialog_buttonIconDimen
:
Int
static
var
AlertDialog_buttonPanelSideLayout
:
Int
static
var
AlertDialog_listItemLayout
:
Int
static
var
AlertDialog_listLayout
:
Int
static
var
AlertDialog_multiChoiceItemLayout
:
Int
static
var
AlertDialog_showTitle
:
Int
static
var
AlertDialog_singleChoiceItemLayout
:
Int
static
var
AnimatedStateListDrawableCompat
:
IntArray
static
var
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
var
AnimatedStateListDrawableCompat_android_dither
:
Int
static
var
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
var
AnimatedStateListDrawableCompat_android_visible
:
Int
static
var
AnimatedStateListDrawableItem
:
IntArray
static
var
AnimatedStateListDrawableItem_android_drawable
:
Int
static
var
AnimatedStateListDrawableItem_android_id
:
Int
static
var
AnimatedStateListDrawableTransition
:
IntArray
static
var
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
var
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
var
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
var
AnimatedStateListDrawableTransition_android_toId
:
Int
static
var
AppBarLayout
:
IntArray
static
var
AppBarLayoutStates
:
IntArray
static
var
AppBarLayoutStates_state_collapsed
:
Int
static
var
AppBarLayoutStates_state_collapsible
:
Int
static
var
AppBarLayoutStates_state_liftable
:
Int
static
var
AppBarLayoutStates_state_lifted
:
Int
static
var
AppBarLayout_Layout
:
IntArray
static
var
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
var
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
var
AppBarLayout_android_background
:
Int
static
var
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
var
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
var
AppBarLayout_elevation
:
Int
static
var
AppBarLayout_expanded
:
Int
static
var
AppBarLayout_liftOnScroll
:
Int
static
var
AppCompatImageView
:
IntArray
static
var
AppCompatImageView_android_src
:
Int
static
var
AppCompatImageView_srcCompat
:
Int
static
var
AppCompatImageView_tint
:
Int
static
var
AppCompatImageView_tintMode
:
Int
static
var
AppCompatSeekBar
:
IntArray
static
var
AppCompatSeekBar_android_thumb
:
Int
static
var
AppCompatSeekBar_tickMark
:
Int
static
var
AppCompatSeekBar_tickMarkTint
:
Int
static
var
AppCompatSeekBar_tickMarkTintMode
:
Int
static
var
AppCompatTextHelper
:
IntArray
static
var
AppCompatTextHelper_android_drawableBottom
:
Int
static
var
AppCompatTextHelper_android_drawableEnd
:
Int
static
var
AppCompatTextHelper_android_drawableLeft
:
Int
static
var
AppCompatTextHelper_android_drawableRight
:
Int
static
var
AppCompatTextHelper_android_drawableStart
:
Int
static
var
AppCompatTextHelper_android_drawableTop
:
Int
static
var
AppCompatTextHelper_android_textAppearance
:
Int
static
var
AppCompatTextView
:
IntArray
static
var
AppCompatTextView_android_textAppearance
:
Int
static
var
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
var
AppCompatTextView_autoSizeMinTextSize
:
Int
static
var
AppCompatTextView_autoSizePresetSizes
:
Int
static
var
AppCompatTextView_autoSizeStepGranularity
:
Int
static
var
AppCompatTextView_autoSizeTextType
:
Int
static
var
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
var
AppCompatTextView_fontFamily
:
Int
static
var
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
var
AppCompatTextView_lineHeight
:
Int
static
var
AppCompatTextView_textAllCaps
:
Int
static
var
AppCompatTheme
:
IntArray
static
var
AppCompatTheme_actionBarDivider
:
Int
static
var
AppCompatTheme_actionBarItemBackground
:
Int
static
var
AppCompatTheme_actionBarPopupTheme
:
Int
static
var
AppCompatTheme_actionBarSize
:
Int
static
var
AppCompatTheme_actionBarSplitStyle
:
Int
static
var
AppCompatTheme_actionBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabStyle
:
Int
static
var
AppCompatTheme_actionBarTabTextStyle
:
Int
static
var
AppCompatTheme_actionBarTheme
:
Int
static
var
AppCompatTheme_actionBarWidgetTheme
:
Int
static
var
AppCompatTheme_actionButtonStyle
:
Int
static
var
AppCompatTheme_actionDropDownStyle
:
Int
static
var
AppCompatTheme_actionMenuTextAppearance
:
Int
static
var
AppCompatTheme_actionMenuTextColor
:
Int
static
var
AppCompatTheme_actionModeBackground
:
Int
static
var
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
var
AppCompatTheme_actionModeCloseDrawable
:
Int
static
var
AppCompatTheme_actionModeCopyDrawable
:
Int
static
var
AppCompatTheme_actionModeCutDrawable
:
Int
static
var
AppCompatTheme_actionModeFindDrawable
:
Int
static
var
AppCompatTheme_actionModePasteDrawable
:
Int
static
var
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
var
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
var
AppCompatTheme_actionModeShareDrawable
:
Int
static
var
AppCompatTheme_actionModeSplitBackground
:
Int
static
var
AppCompatTheme_actionModeStyle
:
Int
static
var
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
var
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
var
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
var
AppCompatTheme_activityChooserViewStyle
:
Int
static
var
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
var
AppCompatTheme_alertDialogCenterButtons
:
Int
static
var
AppCompatTheme_alertDialogStyle
:
Int
static
var
AppCompatTheme_alertDialogTheme
:
Int
static
var
AppCompatTheme_android_windowAnimationStyle
:
Int
static
var
AppCompatTheme_android_windowIsFloating
:
Int
static
var
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
var
AppCompatTheme_borderlessButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarStyle
:
Int
static
var
AppCompatTheme_buttonStyle
:
Int
static
var
AppCompatTheme_buttonStyleSmall
:
Int
static
var
AppCompatTheme_checkboxStyle
:
Int
static
var
AppCompatTheme_checkedTextViewStyle
:
Int
static
var
AppCompatTheme_colorAccent
:
Int
static
var
AppCompatTheme_colorBackgroundFloating
:
Int
static
var
AppCompatTheme_colorButtonNormal
:
Int
static
var
AppCompatTheme_colorControlActivated
:
Int
static
var
AppCompatTheme_colorControlHighlight
:
Int
static
var
AppCompatTheme_colorControlNormal
:
Int
static
var
AppCompatTheme_colorError
:
Int
static
var
AppCompatTheme_colorPrimary
:
Int
static
var
AppCompatTheme_colorPrimaryDark
:
Int
static
var
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
var
AppCompatTheme_controlBackground
:
Int
static
var
AppCompatTheme_dialogCornerRadius
:
Int
static
var
AppCompatTheme_dialogPreferredPadding
:
Int
static
var
AppCompatTheme_dialogTheme
:
Int
static
var
AppCompatTheme_dividerHorizontal
:
Int
static
var
AppCompatTheme_dividerVertical
:
Int
static
var
AppCompatTheme_dropDownListViewStyle
:
Int
static
var
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
var
AppCompatTheme_editTextBackground
:
Int
static
var
AppCompatTheme_editTextColor
:
Int
static
var
AppCompatTheme_editTextStyle
:
Int
static
var
AppCompatTheme_homeAsUpIndicator
:
Int
static
var
AppCompatTheme_imageButtonStyle
:
Int
static
var
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
var
AppCompatTheme_listDividerAlertDialog
:
Int
static
var
AppCompatTheme_listMenuViewStyle
:
Int
static
var
AppCompatTheme_listPopupWindowStyle
:
Int
static
var
AppCompatTheme_listPreferredItemHeight
:
Int
static
var
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
var
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
var
AppCompatTheme_panelBackground
:
Int
static
var
AppCompatTheme_panelMenuListTheme
:
Int
static
var
AppCompatTheme_panelMenuListWidth
:
Int
static
var
AppCompatTheme_popupMenuStyle
:
Int
static
var
AppCompatTheme_popupWindowStyle
:
Int
static
var
AppCompatTheme_radioButtonStyle
:
Int
static
var
AppCompatTheme_ratingBarStyle
:
Int
static
var
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
var
AppCompatTheme_ratingBarStyleSmall
:
Int
static
var
AppCompatTheme_searchViewStyle
:
Int
static
var
AppCompatTheme_seekBarStyle
:
Int
static
var
AppCompatTheme_selectableItemBackground
:
Int
static
var
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
var
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
var
AppCompatTheme_spinnerStyle
:
Int
static
var
AppCompatTheme_switchStyle
:
Int
static
var
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
var
AppCompatTheme_textAppearanceListItem
:
Int
static
var
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
var
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
var
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
var
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
var
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
var
AppCompatTheme_textColorSearchUrl
:
Int
static
var
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
var
AppCompatTheme_toolbarStyle
:
Int
static
var
AppCompatTheme_tooltipForegroundColor
:
Int
static
var
AppCompatTheme_tooltipFrameBackground
:
Int
static
var
AppCompatTheme_viewInflaterClass
:
Int
static
var
AppCompatTheme_windowActionBar
:
Int
static
var
AppCompatTheme_windowActionBarOverlay
:
Int
static
var
AppCompatTheme_windowActionModeOverlay
:
Int
static
var
AppCompatTheme_windowFixedHeightMajor
:
Int
static
var
AppCompatTheme_windowFixedHeightMinor
:
Int
static
var
AppCompatTheme_windowFixedWidthMajor
:
Int
static
var
AppCompatTheme_windowFixedWidthMinor
:
Int
static
var
AppCompatTheme_windowMinWidthMajor
:
Int
static
var
AppCompatTheme_windowMinWidthMinor
:
Int
static
var
AppCompatTheme_windowNoTitle
:
Int
static
var
BottomAppBar
:
IntArray
static
var
BottomAppBar_backgroundTint
:
Int
static
var
BottomAppBar_fabAlignmentMode
:
Int
static
var
BottomAppBar_fabCradleMargin
:
Int
static
var
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
var
BottomAppBar_fabCradleVerticalOffset
:
Int
static
var
BottomAppBar_hideOnScroll
:
Int
static
var
BottomNavigationView
:
IntArray
static
var
BottomNavigationView_elevation
:
Int
static
var
BottomNavigationView_itemBackground
:
Int
static
var
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
var
BottomNavigationView_itemIconSize
:
Int
static
var
BottomNavigationView_itemIconTint
:
Int
static
var
BottomNavigationView_itemTextAppearanceActive
:
Int
static
var
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
var
BottomNavigationView_itemTextColor
:
Int
static
var
BottomNavigationView_labelVisibilityMode
:
Int
static
var
BottomNavigationView_menu
:
Int
static
var
BottomSheetBehavior_Layout
:
IntArray
static
var
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
var
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
var
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
var
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
var
ButtonBarLayout
:
IntArray
static
var
ButtonBarLayout_allowStacking
:
Int
static
var
CardView
:
IntArray
static
var
CardView_android_minHeight
:
Int
static
var
CardView_android_minWidth
:
Int
static
var
CardView_cardBackgroundColor
:
Int
static
var
CardView_cardCornerRadius
:
Int
static
var
CardView_cardElevation
:
Int
static
var
CardView_cardMaxElevation
:
Int
static
var
CardView_cardPreventCornerOverlap
:
Int
static
var
CardView_cardUseCompatPadding
:
Int
static
var
CardView_contentPadding
:
Int
static
var
CardView_contentPaddingBottom
:
Int
static
var
CardView_contentPaddingLeft
:
Int
static
var
CardView_contentPaddingRight
:
Int
static
var
CardView_contentPaddingTop
:
Int
static
var
Chip
:
IntArray
static
var
ChipGroup
:
IntArray
static
var
ChipGroup_checkedChip
:
Int
static
var
ChipGroup_chipSpacing
:
Int
static
var
ChipGroup_chipSpacingHorizontal
:
Int
static
var
ChipGroup_chipSpacingVertical
:
Int
static
var
ChipGroup_singleLine
:
Int
static
var
ChipGroup_singleSelection
:
Int
static
var
Chip_android_checkable
:
Int
static
var
Chip_android_ellipsize
:
Int
static
var
Chip_android_maxWidth
:
Int
static
var
Chip_android_text
:
Int
static
var
Chip_android_textAppearance
:
Int
static
var
Chip_checkedIcon
:
Int
static
var
Chip_checkedIconEnabled
:
Int
static
var
Chip_checkedIconVisible
:
Int
static
var
Chip_chipBackgroundColor
:
Int
static
var
Chip_chipCornerRadius
:
Int
static
var
Chip_chipEndPadding
:
Int
static
var
Chip_chipIcon
:
Int
static
var
Chip_chipIconEnabled
:
Int
static
var
Chip_chipIconSize
:
Int
static
var
Chip_chipIconTint
:
Int
static
var
Chip_chipIconVisible
:
Int
static
var
Chip_chipMinHeight
:
Int
static
var
Chip_chipStartPadding
:
Int
static
var
Chip_chipStrokeColor
:
Int
static
var
Chip_chipStrokeWidth
:
Int
static
var
Chip_closeIcon
:
Int
static
var
Chip_closeIconEnabled
:
Int
static
var
Chip_closeIconEndPadding
:
Int
static
var
Chip_closeIconSize
:
Int
static
var
Chip_closeIconStartPadding
:
Int
static
var
Chip_closeIconTint
:
Int
static
var
Chip_closeIconVisible
:
Int
static
var
Chip_hideMotionSpec
:
Int
static
var
Chip_iconEndPadding
:
Int
static
var
Chip_iconStartPadding
:
Int
static
var
Chip_rippleColor
:
Int
static
var
Chip_showMotionSpec
:
Int
static
var
Chip_textEndPadding
:
Int
static
var
Chip_textStartPadding
:
Int
static
var
CollapsingToolbarLayout
:
IntArray
static
var
CollapsingToolbarLayout_Layout
:
IntArray
static
var
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
var
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_contentScrim
:
Int
static
var
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
var
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
var
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
var
CollapsingToolbarLayout_statusBarScrim
:
Int
static
var
CollapsingToolbarLayout_title
:
Int
static
var
CollapsingToolbarLayout_titleEnabled
:
Int
static
var
CollapsingToolbarLayout_toolbarId
:
Int
static
var
ColorStateListItem
:
IntArray
static
var
ColorStateListItem_alpha
:
Int
static
var
ColorStateListItem_android_alpha
:
Int
static
var
ColorStateListItem_android_color
:
Int
static
var
CompoundButton
:
IntArray
static
var
CompoundButton_android_button
:
Int
static
var
CompoundButton_buttonTint
:
Int
static
var
CompoundButton_buttonTintMode
:
Int
static
var
ConstraintLayout_Layout
:
IntArray
static
var
ConstraintLayout_Layout_android_maxHeight
:
Int
static
var
ConstraintLayout_Layout_android_maxWidth
:
Int
static
var
ConstraintLayout_Layout_android_minHeight
:
Int
static
var
ConstraintLayout_Layout_android_minWidth
:
Int
static
var
ConstraintLayout_Layout_android_orientation
:
Int
static
var
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
var
ConstraintLayout_Layout_barrierDirection
:
Int
static
var
ConstraintLayout_Layout_chainUseRtl
:
Int
static
var
ConstraintLayout_Layout_constraintSet
:
Int
static
var
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
var
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
var
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
var
ConstraintLayout_placeholder
:
IntArray
static
var
ConstraintLayout_placeholder_content
:
Int
static
var
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
var
ConstraintSet
:
IntArray
static
var
ConstraintSet_android_alpha
:
Int
static
var
ConstraintSet_android_elevation
:
Int
static
var
ConstraintSet_android_id
:
Int
static
var
ConstraintSet_android_layout_height
:
Int
static
var
ConstraintSet_android_layout_marginBottom
:
Int
static
var
ConstraintSet_android_layout_marginEnd
:
Int
static
var
ConstraintSet_android_layout_marginLeft
:
Int
static
var
ConstraintSet_android_layout_marginRight
:
Int
static
var
ConstraintSet_android_layout_marginStart
:
Int
static
var
ConstraintSet_android_layout_marginTop
:
Int
static
var
ConstraintSet_android_layout_width
:
Int
static
var
ConstraintSet_android_orientation
:
Int
static
var
ConstraintSet_android_rotation
:
Int
static
var
ConstraintSet_android_rotationX
:
Int
static
var
ConstraintSet_android_rotationY
:
Int
static
var
ConstraintSet_android_scaleX
:
Int
static
var
ConstraintSet_android_scaleY
:
Int
static
var
ConstraintSet_android_transformPivotX
:
Int
static
var
ConstraintSet_android_transformPivotY
:
Int
static
var
ConstraintSet_android_translationX
:
Int
static
var
ConstraintSet_android_translationY
:
Int
static
var
ConstraintSet_android_translationZ
:
Int
static
var
ConstraintSet_android_visibility
:
Int
static
var
ConstraintSet_layout_constrainedHeight
:
Int
static
var
ConstraintSet_layout_constrainedWidth
:
Int
static
var
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
var
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_creator
:
Int
static
var
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintCircle
:
Int
static
var
ConstraintSet_layout_constraintCircleAngle
:
Int
static
var
ConstraintSet_layout_constraintCircleRadius
:
Int
static
var
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
var
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintGuide_begin
:
Int
static
var
ConstraintSet_layout_constraintGuide_end
:
Int
static
var
ConstraintSet_layout_constraintGuide_percent
:
Int
static
var
ConstraintSet_layout_constraintHeight_default
:
Int
static
var
ConstraintSet_layout_constraintHeight_max
:
Int
static
var
ConstraintSet_layout_constraintHeight_min
:
Int
static
var
ConstraintSet_layout_constraintHeight_percent
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintSet_layout_constraintLeft_creator
:
Int
static
var
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintRight_creator
:
Int
static
var
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintTop_creator
:
Int
static
var
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintVertical_bias
:
Int
static
var
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintVertical_weight
:
Int
static
var
ConstraintSet_layout_constraintWidth_default
:
Int
static
var
ConstraintSet_layout_constraintWidth_max
:
Int
static
var
ConstraintSet_layout_constraintWidth_min
:
Int
static
var
ConstraintSet_layout_constraintWidth_percent
:
Int
static
var
ConstraintSet_layout_editor_absoluteX
:
Int
static
var
ConstraintSet_layout_editor_absoluteY
:
Int
static
var
ConstraintSet_layout_goneMarginBottom
:
Int
static
var
ConstraintSet_layout_goneMarginEnd
:
Int
static
var
ConstraintSet_layout_goneMarginLeft
:
Int
static
var
ConstraintSet_layout_goneMarginRight
:
Int
static
var
ConstraintSet_layout_goneMarginStart
:
Int
static
var
ConstraintSet_layout_goneMarginTop
:
Int
static
var
CoordinatorLayout
:
IntArray
static
var
CoordinatorLayout_Layout
:
IntArray
static
var
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
var
CoordinatorLayout_Layout_layout_anchor
:
Int
static
var
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
var
CoordinatorLayout_Layout_layout_behavior
:
Int
static
var
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
var
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
var
CoordinatorLayout_Layout_layout_keyline
:
Int
static
var
CoordinatorLayout_keylines
:
Int
static
var
CoordinatorLayout_statusBarBackground
:
Int
static
var
DesignTheme
:
IntArray
static
var
DesignTheme_bottomSheetDialogTheme
:
Int
static
var
DesignTheme_bottomSheetStyle
:
Int
static
var
DrawerArrowToggle
:
IntArray
static
var
DrawerArrowToggle_arrowHeadLength
:
Int
static
var
DrawerArrowToggle_arrowShaftLength
:
Int
static
var
DrawerArrowToggle_barLength
:
Int
static
var
DrawerArrowToggle_color
:
Int
static
var
DrawerArrowToggle_drawableSize
:
Int
static
var
DrawerArrowToggle_gapBetweenBars
:
Int
static
var
DrawerArrowToggle_spinBars
:
Int
static
var
DrawerArrowToggle_thickness
:
Int
static
var
FloatingActionButton
:
IntArray
static
var
FloatingActionButton_Behavior_Layout
:
IntArray
static
var
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
var
FloatingActionButton_backgroundTint
:
Int
static
var
FloatingActionButton_backgroundTintMode
:
Int
static
var
FloatingActionButton_borderWidth
:
Int
static
var
FloatingActionButton_elevation
:
Int
static
var
FloatingActionButton_fabCustomSize
:
Int
static
var
FloatingActionButton_fabSize
:
Int
static
var
FloatingActionButton_hideMotionSpec
:
Int
static
var
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
var
FloatingActionButton_maxImageSize
:
Int
static
var
FloatingActionButton_pressedTranslationZ
:
Int
static
var
FloatingActionButton_rippleColor
:
Int
static
var
FloatingActionButton_showMotionSpec
:
Int
static
var
FloatingActionButton_useCompatPadding
:
Int
static
var
FlowLayout
:
IntArray
static
var
FlowLayout_itemSpacing
:
Int
static
var
FlowLayout_lineSpacing
:
Int
static
var
FontFamily
:
IntArray
static
var
FontFamilyFont
:
IntArray
static
var
FontFamilyFont_android_font
:
Int
static
var
FontFamilyFont_android_fontStyle
:
Int
static
var
FontFamilyFont_android_fontVariationSettings
:
Int
static
var
FontFamilyFont_android_fontWeight
:
Int
static
var
FontFamilyFont_android_ttcIndex
:
Int
static
var
FontFamilyFont_font
:
Int
static
var
FontFamilyFont_fontStyle
:
Int
static
var
FontFamilyFont_fontVariationSettings
:
Int
static
var
FontFamilyFont_fontWeight
:
Int
static
var
FontFamilyFont_ttcIndex
:
Int
static
var
FontFamily_fontProviderAuthority
:
Int
static
var
FontFamily_fontProviderCerts
:
Int
static
var
FontFamily_fontProviderFetchStrategy
:
Int
static
var
FontFamily_fontProviderFetchTimeout
:
Int
static
var
FontFamily_fontProviderPackage
:
Int
static
var
FontFamily_fontProviderQuery
:
Int
static
var
ForegroundLinearLayout
:
IntArray
static
var
ForegroundLinearLayout_android_foreground
:
Int
static
var
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
var
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
var
GradientColor
:
IntArray
static
var
GradientColorItem
:
IntArray
static
var
GradientColorItem_android_color
:
Int
static
var
GradientColorItem_android_offset
:
Int
static
var
GradientColor_android_centerColor
:
Int
static
var
GradientColor_android_centerX
:
Int
static
var
GradientColor_android_centerY
:
Int
static
var
GradientColor_android_endColor
:
Int
static
var
GradientColor_android_endX
:
Int
static
var
GradientColor_android_endY
:
Int
static
var
GradientColor_android_gradientRadius
:
Int
static
var
GradientColor_android_startColor
:
Int
static
var
GradientColor_android_startX
:
Int
static
var
GradientColor_android_startY
:
Int
static
var
GradientColor_android_tileMode
:
Int
static
var
GradientColor_android_type
:
Int
static
var
LinearConstraintLayout
:
IntArray
static
var
LinearConstraintLayout_android_orientation
:
Int
static
var
LinearLayoutCompat
:
IntArray
static
var
LinearLayoutCompat_Layout
:
IntArray
static
var
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
var
LinearLayoutCompat_android_baselineAligned
:
Int
static
var
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
var
LinearLayoutCompat_android_gravity
:
Int
static
var
LinearLayoutCompat_android_orientation
:
Int
static
var
LinearLayoutCompat_android_weightSum
:
Int
static
var
LinearLayoutCompat_divider
:
Int
static
var
LinearLayoutCompat_dividerPadding
:
Int
static
var
LinearLayoutCompat_measureWithLargestChild
:
Int
static
var
LinearLayoutCompat_showDividers
:
Int
static
var
ListPopupWindow
:
IntArray
static
var
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
var
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
var
MaterialButton
:
IntArray
static
var
MaterialButton_android_insetBottom
:
Int
static
var
MaterialButton_android_insetLeft
:
Int
static
var
MaterialButton_android_insetRight
:
Int
static
var
MaterialButton_android_insetTop
:
Int
static
var
MaterialButton_backgroundTint
:
Int
static
var
MaterialButton_backgroundTintMode
:
Int
static
var
MaterialButton_cornerRadius
:
Int
static
var
MaterialButton_icon
:
Int
static
var
MaterialButton_iconGravity
:
Int
static
var
MaterialButton_iconPadding
:
Int
static
var
MaterialButton_iconSize
:
Int
static
var
MaterialButton_iconTint
:
Int
static
var
MaterialButton_iconTintMode
:
Int
static
var
MaterialButton_rippleColor
:
Int
static
var
MaterialButton_strokeColor
:
Int
static
var
MaterialButton_strokeWidth
:
Int
static
var
MaterialCardView
:
IntArray
static
var
MaterialCardView_strokeColor
:
Int
static
var
MaterialCardView_strokeWidth
:
Int
static
var
MaterialComponentsTheme
:
IntArray
static
var
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
var
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
var
MaterialComponentsTheme_chipGroupStyle
:
Int
static
var
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
var
MaterialComponentsTheme_chipStyle
:
Int
static
var
MaterialComponentsTheme_colorAccent
:
Int
static
var
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
var
MaterialComponentsTheme_colorPrimary
:
Int
static
var
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
var
MaterialComponentsTheme_colorSecondary
:
Int
static
var
MaterialComponentsTheme_editTextStyle
:
Int
static
var
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
var
MaterialComponentsTheme_navigationViewStyle
:
Int
static
var
MaterialComponentsTheme_scrimBackground
:
Int
static
var
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
var
MaterialComponentsTheme_tabStyle
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
var
MaterialComponentsTheme_textAppearanceButton
:
Int
static
var
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
var
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
var
MaterialComponentsTheme_textInputStyle
:
Int
static
var
MenuGroup
:
IntArray
static
var
MenuGroup_android_checkableBehavior
:
Int
static
var
MenuGroup_android_enabled
:
Int
static
var
MenuGroup_android_id
:
Int
static
var
MenuGroup_android_menuCategory
:
Int
static
var
MenuGroup_android_orderInCategory
:
Int
static
var
MenuGroup_android_visible
:
Int
static
var
MenuItem
:
IntArray
static
var
MenuItem_actionLayout
:
Int
static
var
MenuItem_actionProviderClass
:
Int
static
var
MenuItem_actionViewClass
:
Int
static
var
MenuItem_alphabeticModifiers
:
Int
static
var
MenuItem_android_alphabeticShortcut
:
Int
static
var
MenuItem_android_checkable
:
Int
static
var
MenuItem_android_checked
:
Int
static
var
MenuItem_android_enabled
:
Int
static
var
MenuItem_android_icon
:
Int
static
var
MenuItem_android_id
:
Int
static
var
MenuItem_android_menuCategory
:
Int
static
var
MenuItem_android_numericShortcut
:
Int
static
var
MenuItem_android_onClick
:
Int
static
var
MenuItem_android_orderInCategory
:
Int
static
var
MenuItem_android_title
:
Int
static
var
MenuItem_android_titleCondensed
:
Int
static
var
MenuItem_android_visible
:
Int
static
var
MenuItem_contentDescription
:
Int
static
var
MenuItem_iconTint
:
Int
static
var
MenuItem_iconTintMode
:
Int
static
var
MenuItem_numericModifiers
:
Int
static
var
MenuItem_showAsAction
:
Int
static
var
MenuItem_tooltipText
:
Int
static
var
MenuView
:
IntArray
static
var
MenuView_android_headerBackground
:
Int
static
var
MenuView_android_horizontalDivider
:
Int
static
var
MenuView_android_itemBackground
:
Int
static
var
MenuView_android_itemIconDisabledAlpha
:
Int
static
var
MenuView_android_itemTextAppearance
:
Int
static
var
MenuView_android_verticalDivider
:
Int
static
var
MenuView_android_windowAnimationStyle
:
Int
static
var
MenuView_preserveIconSpacing
:
Int
static
var
MenuView_subMenuArrow
:
Int
static
var
NavigationView
:
IntArray
static
var
NavigationView_android_background
:
Int
static
var
NavigationView_android_fitsSystemWindows
:
Int
static
var
NavigationView_android_maxWidth
:
Int
static
var
NavigationView_elevation
:
Int
static
var
NavigationView_headerLayout
:
Int
static
var
NavigationView_itemBackground
:
Int
static
var
NavigationView_itemHorizontalPadding
:
Int
static
var
NavigationView_itemIconPadding
:
Int
static
var
NavigationView_itemIconTint
:
Int
static
var
NavigationView_itemTextAppearance
:
Int
static
var
NavigationView_itemTextColor
:
Int
static
var
NavigationView_menu
:
Int
static
var
PopupWindow
:
IntArray
static
var
PopupWindowBackgroundState
:
IntArray
static
var
PopupWindowBackgroundState_state_above_anchor
:
Int
static
var
PopupWindow_android_popupAnimationStyle
:
Int
static
var
PopupWindow_android_popupBackground
:
Int
static
var
PopupWindow_overlapAnchor
:
Int
static
var
RecycleListView
:
IntArray
static
var
RecycleListView_paddingBottomNoButtons
:
Int
static
var
RecycleListView_paddingTopNoTitle
:
Int
static
var
RecyclerView
:
IntArray
static
var
RecyclerView_android_descendantFocusability
:
Int
static
var
RecyclerView_android_orientation
:
Int
static
var
RecyclerView_fastScrollEnabled
:
Int
static
var
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
var
RecyclerView_layoutManager
:
Int
static
var
RecyclerView_reverseLayout
:
Int
static
var
RecyclerView_spanCount
:
Int
static
var
RecyclerView_stackFromEnd
:
Int
static
var
ScrimInsetsFrameLayout
:
IntArray
static
var
ScrimInsetsFrameLayout_insetForeground
:
Int
static
var
ScrollingViewBehavior_Layout
:
IntArray
static
var
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
var
SearchView
:
IntArray
static
var
SearchView_android_focusable
:
Int
static
var
SearchView_android_imeOptions
:
Int
static
var
SearchView_android_inputType
:
Int
static
var
SearchView_android_maxWidth
:
Int
static
var
SearchView_closeIcon
:
Int
static
var
SearchView_commitIcon
:
Int
static
var
SearchView_defaultQueryHint
:
Int
static
var
SearchView_goIcon
:
Int
static
var
SearchView_iconifiedByDefault
:
Int
static
var
SearchView_layout
:
Int
static
var
SearchView_queryBackground
:
Int
static
var
SearchView_queryHint
:
Int
static
var
SearchView_searchHintIcon
:
Int
static
var
SearchView_searchIcon
:
Int
static
var
SearchView_submitBackground
:
Int
static
var
SearchView_suggestionRowLayout
:
Int
static
var
SearchView_voiceIcon
:
Int
static
var
Snackbar
:
IntArray
static
var
SnackbarLayout
:
IntArray
static
var
SnackbarLayout_android_maxWidth
:
Int
static
var
SnackbarLayout_elevation
:
Int
static
var
SnackbarLayout_maxActionInlineWidth
:
Int
static
var
Snackbar_snackbarButtonStyle
:
Int
static
var
Snackbar_snackbarStyle
:
Int
static
var
Spinner
:
IntArray
static
var
Spinner_android_dropDownWidth
:
Int
static
var
Spinner_android_entries
:
Int
static
var
Spinner_android_popupBackground
:
Int
static
var
Spinner_android_prompt
:
Int
static
var
Spinner_popupTheme
:
Int
static
var
StateListDrawable
:
IntArray
static
var
StateListDrawableItem
:
IntArray
static
var
StateListDrawableItem_android_drawable
:
Int
static
var
StateListDrawable_android_constantSize
:
Int
static
var
StateListDrawable_android_dither
:
Int
static
var
StateListDrawable_android_enterFadeDuration
:
Int
static
var
StateListDrawable_android_exitFadeDuration
:
Int
static
var
StateListDrawable_android_variablePadding
:
Int
static
var
StateListDrawable_android_visible
:
Int
static
var
SwitchCompat
:
IntArray
static
var
SwitchCompat_android_textOff
:
Int
static
var
SwitchCompat_android_textOn
:
Int
static
var
SwitchCompat_android_thumb
:
Int
static
var
SwitchCompat_showText
:
Int
static
var
SwitchCompat_splitTrack
:
Int
static
var
SwitchCompat_switchMinWidth
:
Int
static
var
SwitchCompat_switchPadding
:
Int
static
var
SwitchCompat_switchTextAppearance
:
Int
static
var
SwitchCompat_thumbTextPadding
:
Int
static
var
SwitchCompat_thumbTint
:
Int
static
var
SwitchCompat_thumbTintMode
:
Int
static
var
SwitchCompat_track
:
Int
static
var
SwitchCompat_trackTint
:
Int
static
var
SwitchCompat_trackTintMode
:
Int
static
var
TabItem
:
IntArray
static
var
TabItem_android_icon
:
Int
static
var
TabItem_android_layout
:
Int
static
var
TabItem_android_text
:
Int
static
var
TabLayout
:
IntArray
static
var
TabLayout_tabBackground
:
Int
static
var
TabLayout_tabContentStart
:
Int
static
var
TabLayout_tabGravity
:
Int
static
var
TabLayout_tabIconTint
:
Int
static
var
TabLayout_tabIconTintMode
:
Int
static
var
TabLayout_tabIndicator
:
Int
static
var
TabLayout_tabIndicatorAnimationDuration
:
Int
static
var
TabLayout_tabIndicatorColor
:
Int
static
var
TabLayout_tabIndicatorFullWidth
:
Int
static
var
TabLayout_tabIndicatorGravity
:
Int
static
var
TabLayout_tabIndicatorHeight
:
Int
static
var
TabLayout_tabInlineLabel
:
Int
static
var
TabLayout_tabMaxWidth
:
Int
static
var
TabLayout_tabMinWidth
:
Int
static
var
TabLayout_tabMode
:
Int
static
var
TabLayout_tabPadding
:
Int
static
var
TabLayout_tabPaddingBottom
:
Int
static
var
TabLayout_tabPaddingEnd
:
Int
static
var
TabLayout_tabPaddingStart
:
Int
static
var
TabLayout_tabPaddingTop
:
Int
static
var
TabLayout_tabRippleColor
:
Int
static
var
TabLayout_tabSelectedTextColor
:
Int
static
var
TabLayout_tabTextAppearance
:
Int
static
var
TabLayout_tabTextColor
:
Int
static
var
TabLayout_tabUnboundedRipple
:
Int
static
var
TextAppearance
:
IntArray
static
var
TextAppearance_android_fontFamily
:
Int
static
var
TextAppearance_android_shadowColor
:
Int
static
var
TextAppearance_android_shadowDx
:
Int
static
var
TextAppearance_android_shadowDy
:
Int
static
var
TextAppearance_android_shadowRadius
:
Int
static
var
TextAppearance_android_textColor
:
Int
static
var
TextAppearance_android_textColorHint
:
Int
static
var
TextAppearance_android_textColorLink
:
Int
static
var
TextAppearance_android_textSize
:
Int
static
var
TextAppearance_android_textStyle
:
Int
static
var
TextAppearance_android_typeface
:
Int
static
var
TextAppearance_fontFamily
:
Int
static
var
TextAppearance_textAllCaps
:
Int
static
var
TextInputLayout
:
IntArray
static
var
TextInputLayout_android_hint
:
Int
static
var
TextInputLayout_android_textColorHint
:
Int
static
var
TextInputLayout_boxBackgroundColor
:
Int
static
var
TextInputLayout_boxBackgroundMode
:
Int
static
var
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
var
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
var
TextInputLayout_boxStrokeColor
:
Int
static
var
TextInputLayout_boxStrokeWidth
:
Int
static
var
TextInputLayout_counterEnabled
:
Int
static
var
TextInputLayout_counterMaxLength
:
Int
static
var
TextInputLayout_counterOverflowTextAppearance
:
Int
static
var
TextInputLayout_counterTextAppearance
:
Int
static
var
TextInputLayout_errorEnabled
:
Int
static
var
TextInputLayout_errorTextAppearance
:
Int
static
var
TextInputLayout_helperText
:
Int
static
var
TextInputLayout_helperTextEnabled
:
Int
static
var
TextInputLayout_helperTextTextAppearance
:
Int
static
var
TextInputLayout_hintAnimationEnabled
:
Int
static
var
TextInputLayout_hintEnabled
:
Int
static
var
TextInputLayout_hintTextAppearance
:
Int
static
var
TextInputLayout_passwordToggleContentDescription
:
Int
static
var
TextInputLayout_passwordToggleDrawable
:
Int
static
var
TextInputLayout_passwordToggleEnabled
:
Int
static
var
TextInputLayout_passwordToggleTint
:
Int
static
var
TextInputLayout_passwordToggleTintMode
:
Int
static
var
ThemeEnforcement
:
IntArray
static
var
ThemeEnforcement_android_textAppearance
:
Int
static
var
ThemeEnforcement_enforceMaterialTheme
:
Int
static
var
ThemeEnforcement_enforceTextAppearance
:
Int
static
var
Toolbar
:
IntArray
static
var
Toolbar_android_gravity
:
Int
static
var
Toolbar_android_minHeight
:
Int
static
var
Toolbar_buttonGravity
:
Int
static
var
Toolbar_collapseContentDescription
:
Int
static
var
Toolbar_collapseIcon
:
Int
static
var
Toolbar_contentInsetEnd
:
Int
static
var
Toolbar_contentInsetEndWithActions
:
Int
static
var
Toolbar_contentInsetLeft
:
Int
static
var
Toolbar_contentInsetRight
:
Int
static
var
Toolbar_contentInsetStart
:
Int
static
var
Toolbar_contentInsetStartWithNavigation
:
Int
static
var
Toolbar_logo
:
Int
static
var
Toolbar_logoDescription
:
Int
static
var
Toolbar_maxButtonHeight
:
Int
static
var
Toolbar_navigationContentDescription
:
Int
static
var
Toolbar_navigationIcon
:
Int
static
var
Toolbar_popupTheme
:
Int
static
var
Toolbar_subtitle
:
Int
static
var
Toolbar_subtitleTextAppearance
:
Int
static
var
Toolbar_subtitleTextColor
:
Int
static
var
Toolbar_title
:
Int
static
var
Toolbar_titleMargin
:
Int
static
var
Toolbar_titleMarginBottom
:
Int
static
var
Toolbar_titleMarginEnd
:
Int
static
var
Toolbar_titleMarginStart
:
Int
static
var
Toolbar_titleMarginTop
:
Int
static
var
Toolbar_titleMargins
:
Int
static
var
Toolbar_titleTextAppearance
:
Int
static
var
Toolbar_titleTextColor
:
Int
static
var
View
:
IntArray
static
var
ViewBackgroundHelper
:
IntArray
static
var
ViewBackgroundHelper_android_background
:
Int
static
var
ViewBackgroundHelper_backgroundTint
:
Int
static
var
ViewBackgroundHelper_backgroundTintMode
:
Int
static
var
ViewStubCompat
:
IntArray
static
var
ViewStubCompat_android_id
:
Int
static
var
ViewStubCompat_android_inflatedId
:
Int
static
var
ViewStubCompat_android_layout
:
Int
static
var
View_android_focusable
:
Int
static
var
View_android_theme
:
Int
static
var
View_paddingEnd
:
Int
static
var
View_paddingStart
:
Int
static
var
View_theme
:
Int
class
ResponseErrorException
:
Exception
Module Contents
ResponseErrorException
(
statusCode
:
Int
,
message
:
String
)
sealed
class
Result
<
out
V
,
out
E
>
Module Contents
data
class
Failure
<
out
E
>
:
Result
<
Nothing
,
E
>
Module Contents
Failure
(
error
:
E
)
val
error
:
E
data
class
Success
<
out
V
>
:
Result
<
V
,
Nothing
>
Module Contents
Success
(
value
:
V
)
val
value
:
V
fun
<
E
>
failure
(
error
:
E
)
:
Failure
<
E
>
fun
getErrorOrNull
(
)
:
E
?
fun
getOrThrow
(
)
:
V
fun
getValueOrNull
(
)
:
V
?
val
isError
:
Boolean
val
isSuccess
:
Boolean
inline
fun
<
V
>
of
(
function
:
(
)
->
V
)
:
Result
<
V
,
Exception
>
fun
<
V
>
success
(
value
:
V
)
:
Success
<
V
>
class
SecurityCodeEditText
:
EditText
Module Contents
SecurityCodeEditText
(
context
:
Context
?
)
SecurityCodeEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
SecurityCodeEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
cardBrand
:
(
)
->
CardBrand
?
protected
fun
onFocusChanged
(
focused
:
Boolean
,
direction
:
Int
,
previouslyFocusedRect
:
Rect
?
)
:
Unit
interface
ServerBaseURL
Module Contents
abstract
var
baseURL
:
String
data
class
TransactionId
Module Contents
TransactionId
(
id
:
String
)
val
id
:
String
fun
toString
(
)
:
String
class
UnknowErrorException
:
Exception
Module Contents
UnknowErrorException
(
message
:
String
=
""
)
interface
ValidationListener
Module Contents
abstract
fun
isValidDidChange
(
isValid
:
Boolean
)
:
Unit
java.util.Date
Module Contents
fun
Date
.
timestamp
(
)
:
String
kotlin.String
Module Contents
val
String
.
decimalDigits
:
String
fun
String
.
insertAt
(
index
:
Int
,
element
:
String
)
:
String
package
io.paymenthighway.sdk
Module Contents
interface
BackendAdapter
<
V
>
Module Contents
abstract
fun
addCardCompleted
(
transactionId
:
TransactionId
,
completion
:
(
Result
<
V
,
Exception
>
)
->
Unit
)
:
Unit
abstract
fun
getTransactionId
(
completion
:
(
Result
<
TransactionId
,
Exception
>
)
->
Unit
)
:
Unit
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BASE_URL
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BASE_URL
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
sealed
class
CardBrand
:
CardBrandData
Module Contents
val
allCases
:
Array
<
CardBrand
>
object
americanExpress
:
CardBrand
open
val
cvcLength
:
IntArray
open
val
description
:
String
object
dinersClub
:
CardBrand
object
discover
:
CardBrand
open
val
format
:
Array
<
Int
>
fun
fromCardNumber
(
cardNumber
:
String
)
:
CardBrand
?
object
jcb
:
CardBrand
object
mastercard
:
CardBrand
open
val
panLength
:
IntArray
open
val
pattern
:
String
object
visa
:
CardBrand
enum
class
Environment
:
EnvironmentInterface
Module Contents
Production
Module Contents
var
baseURL
:
String
Sandbox
Module Contents
var
baseURL
:
String
interface
EnvironmentInterface
:
ServerBaseURL
class
PaymentContext
<
V
>
Module Contents
PaymentContext
(
config
:
PaymentConfig
,
backendAdapter
:
BackendAdapter
<
V
>
)
fun
addCard
(
card
:
CardData
,
completion
:
(
Result
<
V
,
Exception
>
)
->
Unit
)
:
Unit
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
var
abc_fade_in
:
Int
static
var
abc_fade_out
:
Int
static
var
abc_grow_fade_in_from_bottom
:
Int
static
var
abc_popup_enter
:
Int
static
var
abc_popup_exit
:
Int
static
var
abc_shrink_fade_out_from_bottom
:
Int
static
var
abc_slide_in_bottom
:
Int
static
var
abc_slide_in_top
:
Int
static
var
abc_slide_out_bottom
:
Int
static
var
abc_slide_out_top
:
Int
static
var
abc_tooltip_enter
:
Int
static
var
abc_tooltip_exit
:
Int
static
var
design_bottom_sheet_slide_in
:
Int
static
var
design_bottom_sheet_slide_out
:
Int
static
var
design_snackbar_in
:
Int
static
var
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
var
design_appbar_state_list_animator
:
Int
static
var
design_fab_hide_motion_spec
:
Int
static
var
design_fab_show_motion_spec
:
Int
static
var
mtrl_btn_state_list_anim
:
Int
static
var
mtrl_btn_unelevated_state_list_anim
:
Int
static
var
mtrl_chip_state_list_anim
:
Int
static
var
mtrl_fab_hide_motion_spec
:
Int
static
var
mtrl_fab_show_motion_spec
:
Int
static
var
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
var
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
var
actionBarDivider
:
Int
static
var
actionBarItemBackground
:
Int
static
var
actionBarPopupTheme
:
Int
static
var
actionBarSize
:
Int
static
var
actionBarSplitStyle
:
Int
static
var
actionBarStyle
:
Int
static
var
actionBarTabBarStyle
:
Int
static
var
actionBarTabStyle
:
Int
static
var
actionBarTabTextStyle
:
Int
static
var
actionBarTheme
:
Int
static
var
actionBarWidgetTheme
:
Int
static
var
actionButtonStyle
:
Int
static
var
actionDropDownStyle
:
Int
static
var
actionLayout
:
Int
static
var
actionMenuTextAppearance
:
Int
static
var
actionMenuTextColor
:
Int
static
var
actionModeBackground
:
Int
static
var
actionModeCloseButtonStyle
:
Int
static
var
actionModeCloseDrawable
:
Int
static
var
actionModeCopyDrawable
:
Int
static
var
actionModeCutDrawable
:
Int
static
var
actionModeFindDrawable
:
Int
static
var
actionModePasteDrawable
:
Int
static
var
actionModePopupWindowStyle
:
Int
static
var
actionModeSelectAllDrawable
:
Int
static
var
actionModeShareDrawable
:
Int
static
var
actionModeSplitBackground
:
Int
static
var
actionModeStyle
:
Int
static
var
actionModeWebSearchDrawable
:
Int
static
var
actionOverflowButtonStyle
:
Int
static
var
actionOverflowMenuStyle
:
Int
static
var
actionProviderClass
:
Int
static
var
actionViewClass
:
Int
static
var
activityChooserViewStyle
:
Int
static
var
alertDialogButtonGroupStyle
:
Int
static
var
alertDialogCenterButtons
:
Int
static
var
alertDialogStyle
:
Int
static
var
alertDialogTheme
:
Int
static
var
allowStacking
:
Int
static
var
alpha
:
Int
static
var
alphabeticModifiers
:
Int
static
var
arrowHeadLength
:
Int
static
var
arrowShaftLength
:
Int
static
var
autoCompleteTextViewStyle
:
Int
static
var
autoSizeMaxTextSize
:
Int
static
var
autoSizeMinTextSize
:
Int
static
var
autoSizePresetSizes
:
Int
static
var
autoSizeStepGranularity
:
Int
static
var
autoSizeTextType
:
Int
static
var
background
:
Int
static
var
backgroundSplit
:
Int
static
var
backgroundStacked
:
Int
static
var
backgroundTint
:
Int
static
var
backgroundTintMode
:
Int
static
var
barLength
:
Int
static
var
barrierAllowsGoneWidgets
:
Int
static
var
barrierDirection
:
Int
static
var
behavior_autoHide
:
Int
static
var
behavior_fitToContents
:
Int
static
var
behavior_hideable
:
Int
static
var
behavior_overlapTop
:
Int
static
var
behavior_peekHeight
:
Int
static
var
behavior_skipCollapsed
:
Int
static
var
borderWidth
:
Int
static
var
borderlessButtonStyle
:
Int
static
var
bottomAppBarStyle
:
Int
static
var
bottomNavigationStyle
:
Int
static
var
bottomSheetDialogTheme
:
Int
static
var
bottomSheetStyle
:
Int
static
var
boxBackgroundColor
:
Int
static
var
boxBackgroundMode
:
Int
static
var
boxCollapsedPaddingTop
:
Int
static
var
boxCornerRadiusBottomEnd
:
Int
static
var
boxCornerRadiusBottomStart
:
Int
static
var
boxCornerRadiusTopEnd
:
Int
static
var
boxCornerRadiusTopStart
:
Int
static
var
boxStrokeColor
:
Int
static
var
boxStrokeWidth
:
Int
static
var
buttonBarButtonStyle
:
Int
static
var
buttonBarNegativeButtonStyle
:
Int
static
var
buttonBarNeutralButtonStyle
:
Int
static
var
buttonBarPositiveButtonStyle
:
Int
static
var
buttonBarStyle
:
Int
static
var
buttonGravity
:
Int
static
var
buttonIconDimen
:
Int
static
var
buttonPanelSideLayout
:
Int
static
var
buttonStyle
:
Int
static
var
buttonStyleSmall
:
Int
static
var
buttonTint
:
Int
static
var
buttonTintMode
:
Int
static
var
cardBackgroundColor
:
Int
static
var
cardCornerRadius
:
Int
static
var
cardElevation
:
Int
static
var
cardMaxElevation
:
Int
static
var
cardPreventCornerOverlap
:
Int
static
var
cardUseCompatPadding
:
Int
static
var
cardViewStyle
:
Int
static
var
chainUseRtl
:
Int
static
var
checkboxStyle
:
Int
static
var
checkedChip
:
Int
static
var
checkedIcon
:
Int
static
var
checkedIconEnabled
:
Int
static
var
checkedIconVisible
:
Int
static
var
checkedTextViewStyle
:
Int
static
var
chipBackgroundColor
:
Int
static
var
chipCornerRadius
:
Int
static
var
chipEndPadding
:
Int
static
var
chipGroupStyle
:
Int
static
var
chipIcon
:
Int
static
var
chipIconEnabled
:
Int
static
var
chipIconSize
:
Int
static
var
chipIconTint
:
Int
static
var
chipIconVisible
:
Int
static
var
chipMinHeight
:
Int
static
var
chipSpacing
:
Int
static
var
chipSpacingHorizontal
:
Int
static
var
chipSpacingVertical
:
Int
static
var
chipStandaloneStyle
:
Int
static
var
chipStartPadding
:
Int
static
var
chipStrokeColor
:
Int
static
var
chipStrokeWidth
:
Int
static
var
chipStyle
:
Int
static
var
closeIcon
:
Int
static
var
closeIconEnabled
:
Int
static
var
closeIconEndPadding
:
Int
static
var
closeIconSize
:
Int
static
var
closeIconStartPadding
:
Int
static
var
closeIconTint
:
Int
static
var
closeIconVisible
:
Int
static
var
closeItemLayout
:
Int
static
var
collapseContentDescription
:
Int
static
var
collapseIcon
:
Int
static
var
collapsedTitleGravity
:
Int
static
var
collapsedTitleTextAppearance
:
Int
static
var
color
:
Int
static
var
colorAccent
:
Int
static
var
colorBackgroundFloating
:
Int
static
var
colorButtonNormal
:
Int
static
var
colorControlActivated
:
Int
static
var
colorControlHighlight
:
Int
static
var
colorControlNormal
:
Int
static
var
colorError
:
Int
static
var
colorPrimary
:
Int
static
var
colorPrimaryDark
:
Int
static
var
colorSecondary
:
Int
static
var
colorSwitchThumbNormal
:
Int
static
var
commitIcon
:
Int
static
var
constraintSet
:
Int
static
var
constraint_referenced_ids
:
Int
static
var
content
:
Int
static
var
contentDescription
:
Int
static
var
contentInsetEnd
:
Int
static
var
contentInsetEndWithActions
:
Int
static
var
contentInsetLeft
:
Int
static
var
contentInsetRight
:
Int
static
var
contentInsetStart
:
Int
static
var
contentInsetStartWithNavigation
:
Int
static
var
contentPadding
:
Int
static
var
contentPaddingBottom
:
Int
static
var
contentPaddingLeft
:
Int
static
var
contentPaddingRight
:
Int
static
var
contentPaddingTop
:
Int
static
var
contentScrim
:
Int
static
var
controlBackground
:
Int
static
var
coordinatorLayoutStyle
:
Int
static
var
cornerRadius
:
Int
static
var
counterEnabled
:
Int
static
var
counterMaxLength
:
Int
static
var
counterOverflowTextAppearance
:
Int
static
var
counterTextAppearance
:
Int
static
var
customNavigationLayout
:
Int
static
var
defaultQueryHint
:
Int
static
var
dialogCornerRadius
:
Int
static
var
dialogPreferredPadding
:
Int
static
var
dialogTheme
:
Int
static
var
displayOptions
:
Int
static
var
divider
:
Int
static
var
dividerHorizontal
:
Int
static
var
dividerPadding
:
Int
static
var
dividerVertical
:
Int
static
var
drawableSize
:
Int
static
var
drawerArrowStyle
:
Int
static
var
dropDownListViewStyle
:
Int
static
var
dropdownListPreferredItemHeight
:
Int
static
var
editTextBackground
:
Int
static
var
editTextColor
:
Int
static
var
editTextStyle
:
Int
static
var
elevation
:
Int
static
var
emptyVisibility
:
Int
static
var
enforceMaterialTheme
:
Int
static
var
enforceTextAppearance
:
Int
static
var
errorEnabled
:
Int
static
var
errorTextAppearance
:
Int
static
var
expandActivityOverflowButtonDrawable
:
Int
static
var
expanded
:
Int
static
var
expandedTitleGravity
:
Int
static
var
expandedTitleMargin
:
Int
static
var
expandedTitleMarginBottom
:
Int
static
var
expandedTitleMarginEnd
:
Int
static
var
expandedTitleMarginStart
:
Int
static
var
expandedTitleMarginTop
:
Int
static
var
expandedTitleTextAppearance
:
Int
static
var
fabAlignmentMode
:
Int
static
var
fabCradleMargin
:
Int
static
var
fabCradleRoundedCornerRadius
:
Int
static
var
fabCradleVerticalOffset
:
Int
static
var
fabCustomSize
:
Int
static
var
fabSize
:
Int
static
var
fastScrollEnabled
:
Int
static
var
fastScrollHorizontalThumbDrawable
:
Int
static
var
fastScrollHorizontalTrackDrawable
:
Int
static
var
fastScrollVerticalThumbDrawable
:
Int
static
var
fastScrollVerticalTrackDrawable
:
Int
static
var
firstBaselineToTopHeight
:
Int
static
var
floatingActionButtonStyle
:
Int
static
var
font
:
Int
static
var
fontFamily
:
Int
static
var
fontProviderAuthority
:
Int
static
var
fontProviderCerts
:
Int
static
var
fontProviderFetchStrategy
:
Int
static
var
fontProviderFetchTimeout
:
Int
static
var
fontProviderPackage
:
Int
static
var
fontProviderQuery
:
Int
static
var
fontStyle
:
Int
static
var
fontVariationSettings
:
Int
static
var
fontWeight
:
Int
static
var
foregroundInsidePadding
:
Int
static
var
gapBetweenBars
:
Int
static
var
goIcon
:
Int
static
var
headerLayout
:
Int
static
var
height
:
Int
static
var
helperText
:
Int
static
var
helperTextEnabled
:
Int
static
var
helperTextTextAppearance
:
Int
static
var
hideMotionSpec
:
Int
static
var
hideOnContentScroll
:
Int
static
var
hideOnScroll
:
Int
static
var
hintAnimationEnabled
:
Int
static
var
hintEnabled
:
Int
static
var
hintTextAppearance
:
Int
static
var
homeAsUpIndicator
:
Int
static
var
homeLayout
:
Int
static
var
hoveredFocusedTranslationZ
:
Int
static
var
icon
:
Int
static
var
iconEndPadding
:
Int
static
var
iconGravity
:
Int
static
var
iconPadding
:
Int
static
var
iconSize
:
Int
static
var
iconStartPadding
:
Int
static
var
iconTint
:
Int
static
var
iconTintMode
:
Int
static
var
iconifiedByDefault
:
Int
static
var
imageButtonStyle
:
Int
static
var
indeterminateProgressStyle
:
Int
static
var
initialActivityCount
:
Int
static
var
insetForeground
:
Int
static
var
isLightTheme
:
Int
static
var
itemBackground
:
Int
static
var
itemHorizontalPadding
:
Int
static
var
itemHorizontalTranslationEnabled
:
Int
static
var
itemIconPadding
:
Int
static
var
itemIconSize
:
Int
static
var
itemIconTint
:
Int
static
var
itemPadding
:
Int
static
var
itemSpacing
:
Int
static
var
itemTextAppearance
:
Int
static
var
itemTextAppearanceActive
:
Int
static
var
itemTextAppearanceInactive
:
Int
static
var
itemTextColor
:
Int
static
var
keylines
:
Int
static
var
labelVisibilityMode
:
Int
static
var
lastBaselineToBottomHeight
:
Int
static
var
layout
:
Int
static
var
layoutManager
:
Int
static
var
layout_anchor
:
Int
static
var
layout_anchorGravity
:
Int
static
var
layout_behavior
:
Int
static
var
layout_collapseMode
:
Int
static
var
layout_collapseParallaxMultiplier
:
Int
static
var
layout_constrainedHeight
:
Int
static
var
layout_constrainedWidth
:
Int
static
var
layout_constraintBaseline_creator
:
Int
static
var
layout_constraintBaseline_toBaselineOf
:
Int
static
var
layout_constraintBottom_creator
:
Int
static
var
layout_constraintBottom_toBottomOf
:
Int
static
var
layout_constraintBottom_toTopOf
:
Int
static
var
layout_constraintCircle
:
Int
static
var
layout_constraintCircleAngle
:
Int
static
var
layout_constraintCircleRadius
:
Int
static
var
layout_constraintDimensionRatio
:
Int
static
var
layout_constraintEnd_toEndOf
:
Int
static
var
layout_constraintEnd_toStartOf
:
Int
static
var
layout_constraintGuide_begin
:
Int
static
var
layout_constraintGuide_end
:
Int
static
var
layout_constraintGuide_percent
:
Int
static
var
layout_constraintHeight_default
:
Int
static
var
layout_constraintHeight_max
:
Int
static
var
layout_constraintHeight_min
:
Int
static
var
layout_constraintHeight_percent
:
Int
static
var
layout_constraintHorizontal_bias
:
Int
static
var
layout_constraintHorizontal_chainStyle
:
Int
static
var
layout_constraintHorizontal_weight
:
Int
static
var
layout_constraintLeft_creator
:
Int
static
var
layout_constraintLeft_toLeftOf
:
Int
static
var
layout_constraintLeft_toRightOf
:
Int
static
var
layout_constraintRight_creator
:
Int
static
var
layout_constraintRight_toLeftOf
:
Int
static
var
layout_constraintRight_toRightOf
:
Int
static
var
layout_constraintStart_toEndOf
:
Int
static
var
layout_constraintStart_toStartOf
:
Int
static
var
layout_constraintTop_creator
:
Int
static
var
layout_constraintTop_toBottomOf
:
Int
static
var
layout_constraintTop_toTopOf
:
Int
static
var
layout_constraintVertical_bias
:
Int
static
var
layout_constraintVertical_chainStyle
:
Int
static
var
layout_constraintVertical_weight
:
Int
static
var
layout_constraintWidth_default
:
Int
static
var
layout_constraintWidth_max
:
Int
static
var
layout_constraintWidth_min
:
Int
static
var
layout_constraintWidth_percent
:
Int
static
var
layout_dodgeInsetEdges
:
Int
static
var
layout_editor_absoluteX
:
Int
static
var
layout_editor_absoluteY
:
Int
static
var
layout_goneMarginBottom
:
Int
static
var
layout_goneMarginEnd
:
Int
static
var
layout_goneMarginLeft
:
Int
static
var
layout_goneMarginRight
:
Int
static
var
layout_goneMarginStart
:
Int
static
var
layout_goneMarginTop
:
Int
static
var
layout_insetEdge
:
Int
static
var
layout_keyline
:
Int
static
var
layout_optimizationLevel
:
Int
static
var
layout_scrollFlags
:
Int
static
var
layout_scrollInterpolator
:
Int
static
var
liftOnScroll
:
Int
static
var
lineHeight
:
Int
static
var
lineSpacing
:
Int
static
var
listChoiceBackgroundIndicator
:
Int
static
var
listDividerAlertDialog
:
Int
static
var
listItemLayout
:
Int
static
var
listLayout
:
Int
static
var
listMenuViewStyle
:
Int
static
var
listPopupWindowStyle
:
Int
static
var
listPreferredItemHeight
:
Int
static
var
listPreferredItemHeightLarge
:
Int
static
var
listPreferredItemHeightSmall
:
Int
static
var
listPreferredItemPaddingLeft
:
Int
static
var
listPreferredItemPaddingRight
:
Int
static
var
logo
:
Int
static
var
logoDescription
:
Int
static
var
materialButtonStyle
:
Int
static
var
materialCardViewStyle
:
Int
static
var
maxActionInlineWidth
:
Int
static
var
maxButtonHeight
:
Int
static
var
maxImageSize
:
Int
static
var
measureWithLargestChild
:
Int
static
var
menu
:
Int
static
var
multiChoiceItemLayout
:
Int
static
var
navigationContentDescription
:
Int
static
var
navigationIcon
:
Int
static
var
navigationMode
:
Int
static
var
navigationViewStyle
:
Int
static
var
numericModifiers
:
Int
static
var
overlapAnchor
:
Int
static
var
paddingBottomNoButtons
:
Int
static
var
paddingEnd
:
Int
static
var
paddingStart
:
Int
static
var
paddingTopNoTitle
:
Int
static
var
panelBackground
:
Int
static
var
panelMenuListTheme
:
Int
static
var
panelMenuListWidth
:
Int
static
var
passwordToggleContentDescription
:
Int
static
var
passwordToggleDrawable
:
Int
static
var
passwordToggleEnabled
:
Int
static
var
passwordToggleTint
:
Int
static
var
passwordToggleTintMode
:
Int
static
var
popupMenuStyle
:
Int
static
var
popupTheme
:
Int
static
var
popupWindowStyle
:
Int
static
var
preserveIconSpacing
:
Int
static
var
pressedTranslationZ
:
Int
static
var
progressBarPadding
:
Int
static
var
progressBarStyle
:
Int
static
var
queryBackground
:
Int
static
var
queryHint
:
Int
static
var
radioButtonStyle
:
Int
static
var
ratingBarStyle
:
Int
static
var
ratingBarStyleIndicator
:
Int
static
var
ratingBarStyleSmall
:
Int
static
var
reverseLayout
:
Int
static
var
rippleColor
:
Int
static
var
scrimAnimationDuration
:
Int
static
var
scrimBackground
:
Int
static
var
scrimVisibleHeightTrigger
:
Int
static
var
searchHintIcon
:
Int
static
var
searchIcon
:
Int
static
var
searchViewStyle
:
Int
static
var
seekBarStyle
:
Int
static
var
selectableItemBackground
:
Int
static
var
selectableItemBackgroundBorderless
:
Int
static
var
showAsAction
:
Int
static
var
showDividers
:
Int
static
var
showMotionSpec
:
Int
static
var
showText
:
Int
static
var
showTitle
:
Int
static
var
singleChoiceItemLayout
:
Int
static
var
singleLine
:
Int
static
var
singleSelection
:
Int
static
var
snackbarButtonStyle
:
Int
static
var
snackbarStyle
:
Int
static
var
spanCount
:
Int
static
var
spinBars
:
Int
static
var
spinnerDropDownItemStyle
:
Int
static
var
spinnerStyle
:
Int
static
var
splitTrack
:
Int
static
var
srcCompat
:
Int
static
var
stackFromEnd
:
Int
static
var
state_above_anchor
:
Int
static
var
state_collapsed
:
Int
static
var
state_collapsible
:
Int
static
var
state_liftable
:
Int
static
var
state_lifted
:
Int
static
var
statusBarBackground
:
Int
static
var
statusBarScrim
:
Int
static
var
strokeColor
:
Int
static
var
strokeWidth
:
Int
static
var
subMenuArrow
:
Int
static
var
submitBackground
:
Int
static
var
subtitle
:
Int
static
var
subtitleTextAppearance
:
Int
static
var
subtitleTextColor
:
Int
static
var
subtitleTextStyle
:
Int
static
var
suggestionRowLayout
:
Int
static
var
switchMinWidth
:
Int
static
var
switchPadding
:
Int
static
var
switchStyle
:
Int
static
var
switchTextAppearance
:
Int
static
var
tabBackground
:
Int
static
var
tabContentStart
:
Int
static
var
tabGravity
:
Int
static
var
tabIconTint
:
Int
static
var
tabIconTintMode
:
Int
static
var
tabIndicator
:
Int
static
var
tabIndicatorAnimationDuration
:
Int
static
var
tabIndicatorColor
:
Int
static
var
tabIndicatorFullWidth
:
Int
static
var
tabIndicatorGravity
:
Int
static
var
tabIndicatorHeight
:
Int
static
var
tabInlineLabel
:
Int
static
var
tabMaxWidth
:
Int
static
var
tabMinWidth
:
Int
static
var
tabMode
:
Int
static
var
tabPadding
:
Int
static
var
tabPaddingBottom
:
Int
static
var
tabPaddingEnd
:
Int
static
var
tabPaddingStart
:
Int
static
var
tabPaddingTop
:
Int
static
var
tabRippleColor
:
Int
static
var
tabSelectedTextColor
:
Int
static
var
tabStyle
:
Int
static
var
tabTextAppearance
:
Int
static
var
tabTextColor
:
Int
static
var
tabUnboundedRipple
:
Int
static
var
textAllCaps
:
Int
static
var
textAppearanceBody1
:
Int
static
var
textAppearanceBody2
:
Int
static
var
textAppearanceButton
:
Int
static
var
textAppearanceCaption
:
Int
static
var
textAppearanceHeadline1
:
Int
static
var
textAppearanceHeadline2
:
Int
static
var
textAppearanceHeadline3
:
Int
static
var
textAppearanceHeadline4
:
Int
static
var
textAppearanceHeadline5
:
Int
static
var
textAppearanceHeadline6
:
Int
static
var
textAppearanceLargePopupMenu
:
Int
static
var
textAppearanceListItem
:
Int
static
var
textAppearanceListItemSecondary
:
Int
static
var
textAppearanceListItemSmall
:
Int
static
var
textAppearanceOverline
:
Int
static
var
textAppearancePopupMenuHeader
:
Int
static
var
textAppearanceSearchResultSubtitle
:
Int
static
var
textAppearanceSearchResultTitle
:
Int
static
var
textAppearanceSmallPopupMenu
:
Int
static
var
textAppearanceSubtitle1
:
Int
static
var
textAppearanceSubtitle2
:
Int
static
var
textColorAlertDialogListItem
:
Int
static
var
textColorSearchUrl
:
Int
static
var
textEndPadding
:
Int
static
var
textInputStyle
:
Int
static
var
textStartPadding
:
Int
static
var
theme
:
Int
static
var
thickness
:
Int
static
var
thumbTextPadding
:
Int
static
var
thumbTint
:
Int
static
var
thumbTintMode
:
Int
static
var
tickMark
:
Int
static
var
tickMarkTint
:
Int
static
var
tickMarkTintMode
:
Int
static
var
tint
:
Int
static
var
tintMode
:
Int
static
var
title
:
Int
static
var
titleEnabled
:
Int
static
var
titleMargin
:
Int
static
var
titleMarginBottom
:
Int
static
var
titleMarginEnd
:
Int
static
var
titleMarginStart
:
Int
static
var
titleMarginTop
:
Int
static
var
titleMargins
:
Int
static
var
titleTextAppearance
:
Int
static
var
titleTextColor
:
Int
static
var
titleTextStyle
:
Int
static
var
toolbarId
:
Int
static
var
toolbarNavigationButtonStyle
:
Int
static
var
toolbarStyle
:
Int
static
var
tooltipForegroundColor
:
Int
static
var
tooltipFrameBackground
:
Int
static
var
tooltipText
:
Int
static
var
track
:
Int
static
var
trackTint
:
Int
static
var
trackTintMode
:
Int
static
var
ttcIndex
:
Int
static
var
useCompatPadding
:
Int
static
var
viewInflaterClass
:
Int
static
var
voiceIcon
:
Int
static
var
windowActionBar
:
Int
static
var
windowActionBarOverlay
:
Int
static
var
windowActionModeOverlay
:
Int
static
var
windowFixedHeightMajor
:
Int
static
var
windowFixedHeightMinor
:
Int
static
var
windowFixedWidthMajor
:
Int
static
var
windowFixedWidthMinor
:
Int
static
var
windowMinWidthMajor
:
Int
static
var
windowMinWidthMinor
:
Int
static
var
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
var
abc_action_bar_embed_tabs
:
Int
static
var
abc_allow_stacked_button_bar
:
Int
static
var
abc_config_actionMenuItemAllCaps
:
Int
static
var
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
var
abc_background_cache_hint_selector_material_dark
:
Int
static
var
abc_background_cache_hint_selector_material_light
:
Int
static
var
abc_btn_colored_borderless_text_material
:
Int
static
var
abc_btn_colored_text_material
:
Int
static
var
abc_color_highlight_material
:
Int
static
var
abc_hint_foreground_material_dark
:
Int
static
var
abc_hint_foreground_material_light
:
Int
static
var
abc_input_method_navigation_guard
:
Int
static
var
abc_primary_text_disable_only_material_dark
:
Int
static
var
abc_primary_text_disable_only_material_light
:
Int
static
var
abc_primary_text_material_dark
:
Int
static
var
abc_primary_text_material_light
:
Int
static
var
abc_search_url_text
:
Int
static
var
abc_search_url_text_normal
:
Int
static
var
abc_search_url_text_pressed
:
Int
static
var
abc_search_url_text_selected
:
Int
static
var
abc_secondary_text_material_dark
:
Int
static
var
abc_secondary_text_material_light
:
Int
static
var
abc_tint_btn_checkable
:
Int
static
var
abc_tint_default
:
Int
static
var
abc_tint_edittext
:
Int
static
var
abc_tint_seek_thumb
:
Int
static
var
abc_tint_spinner
:
Int
static
var
abc_tint_switch_track
:
Int
static
var
accent_material_dark
:
Int
static
var
accent_material_light
:
Int
static
var
background_floating_material_dark
:
Int
static
var
background_floating_material_light
:
Int
static
var
background_material_dark
:
Int
static
var
background_material_light
:
Int
static
var
bright_foreground_disabled_material_dark
:
Int
static
var
bright_foreground_disabled_material_light
:
Int
static
var
bright_foreground_inverse_material_dark
:
Int
static
var
bright_foreground_inverse_material_light
:
Int
static
var
bright_foreground_material_dark
:
Int
static
var
bright_foreground_material_light
:
Int
static
var
button_material_dark
:
Int
static
var
button_material_light
:
Int
static
var
cardview_dark_background
:
Int
static
var
cardview_light_background
:
Int
static
var
cardview_shadow_end_color
:
Int
static
var
cardview_shadow_start_color
:
Int
static
var
design_bottom_navigation_shadow_color
:
Int
static
var
design_default_color_primary
:
Int
static
var
design_default_color_primary_dark
:
Int
static
var
design_error
:
Int
static
var
design_fab_shadow_end_color
:
Int
static
var
design_fab_shadow_mid_color
:
Int
static
var
design_fab_shadow_start_color
:
Int
static
var
design_fab_stroke_end_inner_color
:
Int
static
var
design_fab_stroke_end_outer_color
:
Int
static
var
design_fab_stroke_top_inner_color
:
Int
static
var
design_fab_stroke_top_outer_color
:
Int
static
var
design_snackbar_background_color
:
Int
static
var
design_tint_password_toggle
:
Int
static
var
dim_foreground_disabled_material_dark
:
Int
static
var
dim_foreground_disabled_material_light
:
Int
static
var
dim_foreground_material_dark
:
Int
static
var
dim_foreground_material_light
:
Int
static
var
errorForegroundColor
:
Int
static
var
error_color_material_dark
:
Int
static
var
error_color_material_light
:
Int
static
var
floatingActiveLabelColor
:
Int
static
var
floatingLabelColor
:
Int
static
var
foreground_material_dark
:
Int
static
var
foreground_material_light
:
Int
static
var
highlighted_text_material_dark
:
Int
static
var
highlighted_text_material_light
:
Int
static
var
hintColor
:
Int
static
var
material_blue_grey_800
:
Int
static
var
material_blue_grey_900
:
Int
static
var
material_blue_grey_950
:
Int
static
var
material_deep_teal_200
:
Int
static
var
material_deep_teal_500
:
Int
static
var
material_grey_100
:
Int
static
var
material_grey_300
:
Int
static
var
material_grey_50
:
Int
static
var
material_grey_600
:
Int
static
var
material_grey_800
:
Int
static
var
material_grey_850
:
Int
static
var
material_grey_900
:
Int
static
var
mtrl_bottom_nav_colored_item_tint
:
Int
static
var
mtrl_bottom_nav_item_tint
:
Int
static
var
mtrl_btn_bg_color_disabled
:
Int
static
var
mtrl_btn_bg_color_selector
:
Int
static
var
mtrl_btn_ripple_color
:
Int
static
var
mtrl_btn_stroke_color_selector
:
Int
static
var
mtrl_btn_text_btn_ripple_color
:
Int
static
var
mtrl_btn_text_color_disabled
:
Int
static
var
mtrl_btn_text_color_selector
:
Int
static
var
mtrl_btn_transparent_bg_color
:
Int
static
var
mtrl_chip_background_color
:
Int
static
var
mtrl_chip_close_icon_tint
:
Int
static
var
mtrl_chip_ripple_color
:
Int
static
var
mtrl_chip_text_color
:
Int
static
var
mtrl_fab_ripple_color
:
Int
static
var
mtrl_scrim_color
:
Int
static
var
mtrl_tabs_colored_ripple_color
:
Int
static
var
mtrl_tabs_icon_color_selector
:
Int
static
var
mtrl_tabs_icon_color_selector_colored
:
Int
static
var
mtrl_tabs_legacy_text_color_selector
:
Int
static
var
mtrl_tabs_ripple_color
:
Int
static
var
mtrl_text_btn_text_color_selector
:
Int
static
var
mtrl_textinput_default_box_stroke_color
:
Int
static
var
mtrl_textinput_disabled_color
:
Int
static
var
mtrl_textinput_filled_box_default_background_color
:
Int
static
var
mtrl_textinput_hovered_box_stroke_color
:
Int
static
var
notification_action_color_filter
:
Int
static
var
notification_icon_bg_color
:
Int
static
var
primaryActiveEditTextColor
:
Int
static
var
primaryEditTextColor
:
Int
static
var
primary_dark_material_dark
:
Int
static
var
primary_dark_material_light
:
Int
static
var
primary_material_dark
:
Int
static
var
primary_material_light
:
Int
static
var
primary_text_default_material_dark
:
Int
static
var
primary_text_default_material_light
:
Int
static
var
primary_text_disabled_material_dark
:
Int
static
var
primary_text_disabled_material_light
:
Int
static
var
ripple_material_dark
:
Int
static
var
ripple_material_light
:
Int
static
var
secondary_text_default_material_dark
:
Int
static
var
secondary_text_default_material_light
:
Int
static
var
secondary_text_disabled_material_dark
:
Int
static
var
secondary_text_disabled_material_light
:
Int
static
var
switch_thumb_disabled_material_dark
:
Int
static
var
switch_thumb_disabled_material_light
:
Int
static
var
switch_thumb_material_dark
:
Int
static
var
switch_thumb_material_light
:
Int
static
var
switch_thumb_normal_material_dark
:
Int
static
var
switch_thumb_normal_material_light
:
Int
static
var
tooltip_background_dark
:
Int
static
var
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
var
abc_action_bar_content_inset_material
:
Int
static
var
abc_action_bar_content_inset_with_nav
:
Int
static
var
abc_action_bar_default_height_material
:
Int
static
var
abc_action_bar_default_padding_end_material
:
Int
static
var
abc_action_bar_default_padding_start_material
:
Int
static
var
abc_action_bar_elevation_material
:
Int
static
var
abc_action_bar_icon_vertical_padding_material
:
Int
static
var
abc_action_bar_overflow_padding_end_material
:
Int
static
var
abc_action_bar_overflow_padding_start_material
:
Int
static
var
abc_action_bar_stacked_max_height
:
Int
static
var
abc_action_bar_stacked_tab_max_width
:
Int
static
var
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
var
abc_action_bar_subtitle_top_margin_material
:
Int
static
var
abc_action_button_min_height_material
:
Int
static
var
abc_action_button_min_width_material
:
Int
static
var
abc_action_button_min_width_overflow_material
:
Int
static
var
abc_alert_dialog_button_bar_height
:
Int
static
var
abc_alert_dialog_button_dimen
:
Int
static
var
abc_button_inset_horizontal_material
:
Int
static
var
abc_button_inset_vertical_material
:
Int
static
var
abc_button_padding_horizontal_material
:
Int
static
var
abc_button_padding_vertical_material
:
Int
static
var
abc_cascading_menus_min_smallest_width
:
Int
static
var
abc_config_prefDialogWidth
:
Int
static
var
abc_control_corner_material
:
Int
static
var
abc_control_inset_material
:
Int
static
var
abc_control_padding_material
:
Int
static
var
abc_dialog_corner_radius_material
:
Int
static
var
abc_dialog_fixed_height_major
:
Int
static
var
abc_dialog_fixed_height_minor
:
Int
static
var
abc_dialog_fixed_width_major
:
Int
static
var
abc_dialog_fixed_width_minor
:
Int
static
var
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
var
abc_dialog_list_padding_top_no_title
:
Int
static
var
abc_dialog_min_width_major
:
Int
static
var
abc_dialog_min_width_minor
:
Int
static
var
abc_dialog_padding_material
:
Int
static
var
abc_dialog_padding_top_material
:
Int
static
var
abc_dialog_title_divider_material
:
Int
static
var
abc_disabled_alpha_material_dark
:
Int
static
var
abc_disabled_alpha_material_light
:
Int
static
var
abc_dropdownitem_icon_width
:
Int
static
var
abc_dropdownitem_text_padding_left
:
Int
static
var
abc_dropdownitem_text_padding_right
:
Int
static
var
abc_edit_text_inset_bottom_material
:
Int
static
var
abc_edit_text_inset_horizontal_material
:
Int
static
var
abc_edit_text_inset_top_material
:
Int
static
var
abc_floating_window_z
:
Int
static
var
abc_list_item_padding_horizontal_material
:
Int
static
var
abc_panel_menu_list_width
:
Int
static
var
abc_progress_bar_height_material
:
Int
static
var
abc_search_view_preferred_height
:
Int
static
var
abc_search_view_preferred_width
:
Int
static
var
abc_seekbar_track_background_height_material
:
Int
static
var
abc_seekbar_track_progress_height_material
:
Int
static
var
abc_select_dialog_padding_start_material
:
Int
static
var
abc_switch_padding
:
Int
static
var
abc_text_size_body_1_material
:
Int
static
var
abc_text_size_body_2_material
:
Int
static
var
abc_text_size_button_material
:
Int
static
var
abc_text_size_caption_material
:
Int
static
var
abc_text_size_display_1_material
:
Int
static
var
abc_text_size_display_2_material
:
Int
static
var
abc_text_size_display_3_material
:
Int
static
var
abc_text_size_display_4_material
:
Int
static
var
abc_text_size_headline_material
:
Int
static
var
abc_text_size_large_material
:
Int
static
var
abc_text_size_medium_material
:
Int
static
var
abc_text_size_menu_header_material
:
Int
static
var
abc_text_size_menu_material
:
Int
static
var
abc_text_size_small_material
:
Int
static
var
abc_text_size_subhead_material
:
Int
static
var
abc_text_size_subtitle_material_toolbar
:
Int
static
var
abc_text_size_title_material
:
Int
static
var
abc_text_size_title_material_toolbar
:
Int
static
var
add_card_expiry_middle_margin
:
Int
static
var
cardview_compat_inset_shadow
:
Int
static
var
cardview_default_elevation
:
Int
static
var
cardview_default_radius
:
Int
static
var
compat_button_inset_horizontal_material
:
Int
static
var
compat_button_inset_vertical_material
:
Int
static
var
compat_button_padding_horizontal_material
:
Int
static
var
compat_button_padding_vertical_material
:
Int
static
var
compat_control_corner_material
:
Int
static
var
compat_notification_large_icon_max_height
:
Int
static
var
compat_notification_large_icon_max_width
:
Int
static
var
design_appbar_elevation
:
Int
static
var
design_bottom_navigation_active_item_max_width
:
Int
static
var
design_bottom_navigation_active_item_min_width
:
Int
static
var
design_bottom_navigation_active_text_size
:
Int
static
var
design_bottom_navigation_elevation
:
Int
static
var
design_bottom_navigation_height
:
Int
static
var
design_bottom_navigation_icon_size
:
Int
static
var
design_bottom_navigation_item_max_width
:
Int
static
var
design_bottom_navigation_item_min_width
:
Int
static
var
design_bottom_navigation_margin
:
Int
static
var
design_bottom_navigation_shadow_height
:
Int
static
var
design_bottom_navigation_text_size
:
Int
static
var
design_bottom_sheet_modal_elevation
:
Int
static
var
design_bottom_sheet_peek_height_min
:
Int
static
var
design_fab_border_width
:
Int
static
var
design_fab_elevation
:
Int
static
var
design_fab_image_size
:
Int
static
var
design_fab_size_mini
:
Int
static
var
design_fab_size_normal
:
Int
static
var
design_fab_translation_z_hovered_focused
:
Int
static
var
design_fab_translation_z_pressed
:
Int
static
var
design_navigation_elevation
:
Int
static
var
design_navigation_icon_padding
:
Int
static
var
design_navigation_icon_size
:
Int
static
var
design_navigation_item_horizontal_padding
:
Int
static
var
design_navigation_item_icon_padding
:
Int
static
var
design_navigation_max_width
:
Int
static
var
design_navigation_padding_bottom
:
Int
static
var
design_navigation_separator_vertical_padding
:
Int
static
var
design_snackbar_action_inline_max_width
:
Int
static
var
design_snackbar_background_corner_radius
:
Int
static
var
design_snackbar_elevation
:
Int
static
var
design_snackbar_extra_spacing_horizontal
:
Int
static
var
design_snackbar_max_width
:
Int
static
var
design_snackbar_min_width
:
Int
static
var
design_snackbar_padding_horizontal
:
Int
static
var
design_snackbar_padding_vertical
:
Int
static
var
design_snackbar_padding_vertical_2lines
:
Int
static
var
design_snackbar_text_size
:
Int
static
var
design_tab_max_width
:
Int
static
var
design_tab_scrollable_min_width
:
Int
static
var
design_tab_text_size
:
Int
static
var
design_tab_text_size_2line
:
Int
static
var
design_textinput_caption_translate_y
:
Int
static
var
disabled_alpha_material_dark
:
Int
static
var
disabled_alpha_material_light
:
Int
static
var
fab_margin
:
Int
static
var
fastscroll_default_thickness
:
Int
static
var
fastscroll_margin
:
Int
static
var
fastscroll_minimum_range
:
Int
static
var
highlight_alpha_material_colored
:
Int
static
var
highlight_alpha_material_dark
:
Int
static
var
highlight_alpha_material_light
:
Int
static
var
hint_alpha_material_dark
:
Int
static
var
hint_alpha_material_light
:
Int
static
var
hint_pressed_alpha_material_dark
:
Int
static
var
hint_pressed_alpha_material_light
:
Int
static
var
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
var
item_touch_helper_swipe_escape_max_velocity
:
Int
static
var
item_touch_helper_swipe_escape_velocity
:
Int
static
var
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
var
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
var
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
var
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
var
mtrl_bottomappbar_height
:
Int
static
var
mtrl_btn_corner_radius
:
Int
static
var
mtrl_btn_dialog_btn_min_width
:
Int
static
var
mtrl_btn_disabled_elevation
:
Int
static
var
mtrl_btn_disabled_z
:
Int
static
var
mtrl_btn_elevation
:
Int
static
var
mtrl_btn_focused_z
:
Int
static
var
mtrl_btn_hovered_z
:
Int
static
var
mtrl_btn_icon_btn_padding_left
:
Int
static
var
mtrl_btn_icon_padding
:
Int
static
var
mtrl_btn_inset
:
Int
static
var
mtrl_btn_letter_spacing
:
Int
static
var
mtrl_btn_padding_bottom
:
Int
static
var
mtrl_btn_padding_left
:
Int
static
var
mtrl_btn_padding_right
:
Int
static
var
mtrl_btn_padding_top
:
Int
static
var
mtrl_btn_pressed_z
:
Int
static
var
mtrl_btn_stroke_size
:
Int
static
var
mtrl_btn_text_btn_icon_padding
:
Int
static
var
mtrl_btn_text_btn_padding_left
:
Int
static
var
mtrl_btn_text_btn_padding_right
:
Int
static
var
mtrl_btn_text_size
:
Int
static
var
mtrl_btn_z
:
Int
static
var
mtrl_card_elevation
:
Int
static
var
mtrl_card_spacing
:
Int
static
var
mtrl_chip_pressed_translation_z
:
Int
static
var
mtrl_chip_text_size
:
Int
static
var
mtrl_fab_elevation
:
Int
static
var
mtrl_fab_translation_z_hovered_focused
:
Int
static
var
mtrl_fab_translation_z_pressed
:
Int
static
var
mtrl_navigation_elevation
:
Int
static
var
mtrl_navigation_item_horizontal_padding
:
Int
static
var
mtrl_navigation_item_icon_padding
:
Int
static
var
mtrl_snackbar_background_corner_radius
:
Int
static
var
mtrl_snackbar_margin
:
Int
static
var
mtrl_textinput_box_bottom_offset
:
Int
static
var
mtrl_textinput_box_corner_radius_medium
:
Int
static
var
mtrl_textinput_box_corner_radius_small
:
Int
static
var
mtrl_textinput_box_label_cutout_padding
:
Int
static
var
mtrl_textinput_box_padding_end
:
Int
static
var
mtrl_textinput_box_stroke_width_default
:
Int
static
var
mtrl_textinput_box_stroke_width_focused
:
Int
static
var
mtrl_textinput_outline_box_expanded_padding
:
Int
static
var
mtrl_toolbar_default_height
:
Int
static
var
notification_action_icon_size
:
Int
static
var
notification_action_text_size
:
Int
static
var
notification_big_circle_margin
:
Int
static
var
notification_content_margin_start
:
Int
static
var
notification_large_icon_height
:
Int
static
var
notification_large_icon_width
:
Int
static
var
notification_main_column_padding_top
:
Int
static
var
notification_media_narrow_margin
:
Int
static
var
notification_right_icon_size
:
Int
static
var
notification_right_side_padding_top
:
Int
static
var
notification_small_icon_background_padding
:
Int
static
var
notification_small_icon_size_as_large
:
Int
static
var
notification_subtext_size
:
Int
static
var
notification_top_pad
:
Int
static
var
notification_top_pad_large_text
:
Int
static
var
tooltip_corner_radius
:
Int
static
var
tooltip_horizontal_padding
:
Int
static
var
tooltip_margin
:
Int
static
var
tooltip_precise_anchor_extra_offset
:
Int
static
var
tooltip_precise_anchor_threshold
:
Int
static
var
tooltip_vertical_padding
:
Int
static
var
tooltip_y_offset_non_touch
:
Int
static
var
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
var
abc_ab_share_pack_mtrl_alpha
:
Int
static
var
abc_action_bar_item_background_material
:
Int
static
var
abc_btn_borderless_material
:
Int
static
var
abc_btn_check_material
:
Int
static
var
abc_btn_check_to_on_mtrl_000
:
Int
static
var
abc_btn_check_to_on_mtrl_015
:
Int
static
var
abc_btn_colored_material
:
Int
static
var
abc_btn_default_mtrl_shape
:
Int
static
var
abc_btn_radio_material
:
Int
static
var
abc_btn_radio_to_on_mtrl_000
:
Int
static
var
abc_btn_radio_to_on_mtrl_015
:
Int
static
var
abc_btn_switch_to_on_mtrl_00001
:
Int
static
var
abc_btn_switch_to_on_mtrl_00012
:
Int
static
var
abc_cab_background_internal_bg
:
Int
static
var
abc_cab_background_top_material
:
Int
static
var
abc_cab_background_top_mtrl_alpha
:
Int
static
var
abc_control_background_material
:
Int
static
var
abc_dialog_material_background
:
Int
static
var
abc_edit_text_material
:
Int
static
var
abc_ic_ab_back_material
:
Int
static
var
abc_ic_arrow_drop_right_black_24dp
:
Int
static
var
abc_ic_clear_material
:
Int
static
var
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
var
abc_ic_go_search_api_material
:
Int
static
var
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_cut_mtrl_alpha
:
Int
static
var
abc_ic_menu_overflow_material
:
Int
static
var
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
var
abc_ic_menu_share_mtrl_alpha
:
Int
static
var
abc_ic_search_api_material
:
Int
static
var
abc_ic_star_black_16dp
:
Int
static
var
abc_ic_star_black_36dp
:
Int
static
var
abc_ic_star_black_48dp
:
Int
static
var
abc_ic_star_half_black_16dp
:
Int
static
var
abc_ic_star_half_black_36dp
:
Int
static
var
abc_ic_star_half_black_48dp
:
Int
static
var
abc_ic_voice_search_api_material
:
Int
static
var
abc_item_background_holo_dark
:
Int
static
var
abc_item_background_holo_light
:
Int
static
var
abc_list_divider_material
:
Int
static
var
abc_list_divider_mtrl_alpha
:
Int
static
var
abc_list_focused_holo
:
Int
static
var
abc_list_longpressed_holo
:
Int
static
var
abc_list_pressed_holo_dark
:
Int
static
var
abc_list_pressed_holo_light
:
Int
static
var
abc_list_selector_background_transition_holo_dark
:
Int
static
var
abc_list_selector_background_transition_holo_light
:
Int
static
var
abc_list_selector_disabled_holo_dark
:
Int
static
var
abc_list_selector_disabled_holo_light
:
Int
static
var
abc_list_selector_holo_dark
:
Int
static
var
abc_list_selector_holo_light
:
Int
static
var
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
var
abc_popup_background_mtrl_mult
:
Int
static
var
abc_ratingbar_indicator_material
:
Int
static
var
abc_ratingbar_material
:
Int
static
var
abc_ratingbar_small_material
:
Int
static
var
abc_scrubber_control_off_mtrl_alpha
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
var
abc_scrubber_primary_mtrl_alpha
:
Int
static
var
abc_scrubber_track_mtrl_alpha
:
Int
static
var
abc_seekbar_thumb_material
:
Int
static
var
abc_seekbar_tick_mark_material
:
Int
static
var
abc_seekbar_track_material
:
Int
static
var
abc_spinner_mtrl_am_alpha
:
Int
static
var
abc_spinner_textfield_background_material
:
Int
static
var
abc_switch_thumb_material
:
Int
static
var
abc_switch_track_mtrl_alpha
:
Int
static
var
abc_tab_indicator_material
:
Int
static
var
abc_tab_indicator_mtrl_alpha
:
Int
static
var
abc_text_cursor_material
:
Int
static
var
abc_text_select_handle_left_mtrl_dark
:
Int
static
var
abc_text_select_handle_left_mtrl_light
:
Int
static
var
abc_text_select_handle_middle_mtrl_dark
:
Int
static
var
abc_text_select_handle_middle_mtrl_light
:
Int
static
var
abc_text_select_handle_right_mtrl_dark
:
Int
static
var
abc_text_select_handle_right_mtrl_light
:
Int
static
var
abc_textfield_activated_mtrl_alpha
:
Int
static
var
abc_textfield_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_activated_mtrl_alpha
:
Int
static
var
abc_textfield_search_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_material
:
Int
static
var
abc_vector_test
:
Int
static
var
american_express
:
Int
static
var
avd_hide_password
:
Int
static
var
avd_show_password
:
Int
static
var
card
:
Int
static
var
cvc
:
Int
static
var
design_bottom_navigation_item_background
:
Int
static
var
design_fab_background
:
Int
static
var
design_ic_visibility
:
Int
static
var
design_ic_visibility_off
:
Int
static
var
design_password_eye
:
Int
static
var
design_snackbar_background
:
Int
static
var
dinners_club
:
Int
static
var
edit_text_color
:
Int
static
var
expiry_date
:
Int
static
var
ic_mtrl_chip_checked_black
:
Int
static
var
ic_mtrl_chip_checked_circle
:
Int
static
var
ic_mtrl_chip_close_circle
:
Int
static
var
mastercard
:
Int
static
var
mtrl_snackbar_background
:
Int
static
var
mtrl_tabs_default_indicator
:
Int
static
var
navigation_empty_icon
:
Int
static
var
notification_action_background
:
Int
static
var
notification_bg
:
Int
static
var
notification_bg_low
:
Int
static
var
notification_bg_low_normal
:
Int
static
var
notification_bg_low_pressed
:
Int
static
var
notification_bg_normal
:
Int
static
var
notification_bg_normal_pressed
:
Int
static
var
notification_icon_background
:
Int
static
var
notification_template_icon_bg
:
Int
static
var
notification_template_icon_low_bg
:
Int
static
var
notification_tile_bg
:
Int
static
var
notify_panel_notification_icon_bg
:
Int
static
var
tooltip_frame_dark
:
Int
static
var
tooltip_frame_light
:
Int
static
var
visa
:
Int
class
id
Module Contents
id
(
)
static
var
action_bar
:
Int
static
var
action_bar_activity_content
:
Int
static
var
action_bar_container
:
Int
static
var
action_bar_root
:
Int
static
var
action_bar_spinner
:
Int
static
var
action_bar_subtitle
:
Int
static
var
action_bar_title
:
Int
static
var
action_container
:
Int
static
var
action_context_bar
:
Int
static
var
action_divider
:
Int
static
var
action_image
:
Int
static
var
action_menu_divider
:
Int
static
var
action_menu_presenter
:
Int
static
var
action_mode_bar
:
Int
static
var
action_mode_bar_stub
:
Int
static
var
action_mode_close_button
:
Int
static
var
action_text
:
Int
static
var
actions
:
Int
static
var
activity_chooser_view_content
:
Int
static
var
add
:
Int
static
var
alertTitle
:
Int
static
var
async
:
Int
static
var
auto
:
Int
static
var
barrier
:
Int
static
var
blocking
:
Int
static
var
bottom
:
Int
static
var
buttonPanel
:
Int
static
var
center
:
Int
static
var
chains
:
Int
static
var
checkbox
:
Int
static
var
chronometer
:
Int
static
var
container
:
Int
static
var
content
:
Int
static
var
contentPanel
:
Int
static
var
coordinator
:
Int
static
var
custom
:
Int
static
var
customPanel
:
Int
static
var
decor_content_parent
:
Int
static
var
default_activity_button
:
Int
static
var
design_bottom_sheet
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_menu_item_action_area_stub
:
Int
static
var
design_menu_item_text
:
Int
static
var
design_navigation_view
:
Int
static
var
dimensions
:
Int
static
var
direct
:
Int
static
var
edit_query
:
Int
static
var
edit_text_card_number
:
Int
static
var
edit_text_expiry_date
:
Int
static
var
edit_text_security_code
:
Int
static
var
end
:
Int
static
var
expand_activities_button
:
Int
static
var
expanded_menu
:
Int
static
var
fill
:
Int
static
var
filled
:
Int
static
var
fixed
:
Int
static
var
forever
:
Int
static
var
ghost_view
:
Int
static
var
gone
:
Int
static
var
group_divider
:
Int
static
var
home
:
Int
static
var
icon
:
Int
static
var
icon_group
:
Int
static
var
image
:
Int
static
var
info
:
Int
static
var
invisible
:
Int
static
var
italic
:
Int
static
var
item_touch_helper_previous_elevation
:
Int
static
var
labeled
:
Int
static
var
largeLabel
:
Int
static
var
left
:
Int
static
var
line1
:
Int
static
var
line3
:
Int
static
var
listMode
:
Int
static
var
list_item
:
Int
static
var
masked
:
Int
static
var
message
:
Int
static
var
mini
:
Int
static
var
mtrl_child_content_container
:
Int
static
var
mtrl_internal_children_alpha_tag
:
Int
static
var
multiply
:
Int
static
var
navigation_header_container
:
Int
static
var
none
:
Int
static
var
normal
:
Int
static
var
notification_background
:
Int
static
var
notification_main_column
:
Int
static
var
notification_main_column_container
:
Int
static
var
outline
:
Int
static
var
packed
:
Int
static
var
parallax
:
Int
static
var
parent
:
Int
static
var
parentPanel
:
Int
static
var
parent_matrix
:
Int
static
var
percent
:
Int
static
var
pin
:
Int
static
var
progress_circular
:
Int
static
var
progress_horizontal
:
Int
static
var
radio
:
Int
static
var
right
:
Int
static
var
right_icon
:
Int
static
var
right_side
:
Int
static
var
save_image_matrix
:
Int
static
var
save_non_transition_alpha
:
Int
static
var
save_scale_type
:
Int
static
var
screen
:
Int
static
var
scrollIndicatorDown
:
Int
static
var
scrollIndicatorUp
:
Int
static
var
scrollView
:
Int
static
var
scrollable
:
Int
static
var
search_badge
:
Int
static
var
search_bar
:
Int
static
var
search_button
:
Int
static
var
search_close_btn
:
Int
static
var
search_edit_frame
:
Int
static
var
search_go_btn
:
Int
static
var
search_mag_icon
:
Int
static
var
search_plate
:
Int
static
var
search_src_text
:
Int
static
var
search_voice_btn
:
Int
static
var
second_row_layout
:
Int
static
var
select_dialog_listview
:
Int
static
var
selected
:
Int
static
var
shortcut
:
Int
static
var
smallLabel
:
Int
static
var
snackbar_action
:
Int
static
var
snackbar_text
:
Int
static
var
spacer
:
Int
static
var
split_action_bar
:
Int
static
var
spread
:
Int
static
var
spread_inside
:
Int
static
var
src_atop
:
Int
static
var
src_in
:
Int
static
var
src_over
:
Int
static
var
standard
:
Int
static
var
start
:
Int
static
var
stretch
:
Int
static
var
submenuarrow
:
Int
static
var
submit_area
:
Int
static
var
tabMode
:
Int
static
var
tag_transition_group
:
Int
static
var
tag_unhandled_key_event_manager
:
Int
static
var
tag_unhandled_key_listeners
:
Int
static
var
text
:
Int
static
var
text2
:
Int
static
var
textSpacerNoButtons
:
Int
static
var
textSpacerNoTitle
:
Int
static
var
text_input_password_toggle
:
Int
static
var
text_layout_card_number
:
Int
static
var
text_layout_expiry_date
:
Int
static
var
text_layout_security_code
:
Int
static
var
textinput_counter
:
Int
static
var
textinput_error
:
Int
static
var
textinput_helper_text
:
Int
static
var
time
:
Int
static
var
title
:
Int
static
var
titleDividerNoCustom
:
Int
static
var
title_template
:
Int
static
var
top
:
Int
static
var
topPanel
:
Int
static
var
touch_outside
:
Int
static
var
transition_current_scene
:
Int
static
var
transition_layout_save
:
Int
static
var
transition_position
:
Int
static
var
transition_scene_layoutid_cache
:
Int
static
var
transition_transform
:
Int
static
var
uniform
:
Int
static
var
unlabeled
:
Int
static
var
up
:
Int
static
var
view_offset_helper
:
Int
static
var
visible
:
Int
static
var
wrap
:
Int
static
var
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
var
abc_config_activityDefaultDur
:
Int
static
var
abc_config_activityShortDur
:
Int
static
var
app_bar_elevation_anim_duration
:
Int
static
var
bottom_sheet_slide_duration
:
Int
static
var
cancel_button_image_alpha
:
Int
static
var
config_tooltipAnimTime
:
Int
static
var
design_snackbar_text_max_lines
:
Int
static
var
design_tab_indicator_anim_duration_ms
:
Int
static
var
hide_password_duration
:
Int
static
var
mtrl_btn_anim_delay_ms
:
Int
static
var
mtrl_btn_anim_duration_ms
:
Int
static
var
mtrl_chip_anim_duration
:
Int
static
var
mtrl_tab_indicator_anim_duration_ms
:
Int
static
var
show_password_duration
:
Int
static
var
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
var
mtrl_fast_out_linear_in
:
Int
static
var
mtrl_fast_out_slow_in
:
Int
static
var
mtrl_linear
:
Int
static
var
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
var
abc_action_bar_title_item
:
Int
static
var
abc_action_bar_up_container
:
Int
static
var
abc_action_menu_item_layout
:
Int
static
var
abc_action_menu_layout
:
Int
static
var
abc_action_mode_bar
:
Int
static
var
abc_action_mode_close_item_material
:
Int
static
var
abc_activity_chooser_view
:
Int
static
var
abc_activity_chooser_view_list_item
:
Int
static
var
abc_alert_dialog_button_bar_material
:
Int
static
var
abc_alert_dialog_material
:
Int
static
var
abc_alert_dialog_title_material
:
Int
static
var
abc_cascading_menu_item_layout
:
Int
static
var
abc_dialog_title_material
:
Int
static
var
abc_expanded_menu_layout
:
Int
static
var
abc_list_menu_item_checkbox
:
Int
static
var
abc_list_menu_item_icon
:
Int
static
var
abc_list_menu_item_layout
:
Int
static
var
abc_list_menu_item_radio
:
Int
static
var
abc_popup_menu_header_item_layout
:
Int
static
var
abc_popup_menu_item_layout
:
Int
static
var
abc_screen_content_include
:
Int
static
var
abc_screen_simple
:
Int
static
var
abc_screen_simple_overlay_action_mode
:
Int
static
var
abc_screen_toolbar
:
Int
static
var
abc_search_dropdown_item_icons_2line
:
Int
static
var
abc_search_view
:
Int
static
var
abc_select_dialog_material
:
Int
static
var
abc_tooltip
:
Int
static
var
add_card_widget
:
Int
static
var
design_bottom_navigation_item
:
Int
static
var
design_bottom_sheet_dialog
:
Int
static
var
design_layout_snackbar
:
Int
static
var
design_layout_snackbar_include
:
Int
static
var
design_layout_tab_icon
:
Int
static
var
design_layout_tab_text
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_navigation_item
:
Int
static
var
design_navigation_item_header
:
Int
static
var
design_navigation_item_separator
:
Int
static
var
design_navigation_item_subheader
:
Int
static
var
design_navigation_menu
:
Int
static
var
design_navigation_menu_item
:
Int
static
var
design_text_input_password_icon
:
Int
static
var
mtrl_layout_snackbar
:
Int
static
var
mtrl_layout_snackbar_include
:
Int
static
var
notification_action
:
Int
static
var
notification_action_tombstone
:
Int
static
var
notification_template_custom_big
:
Int
static
var
notification_template_icon_group
:
Int
static
var
notification_template_part_chronometer
:
Int
static
var
notification_template_part_time
:
Int
static
var
select_dialog_item_material
:
Int
static
var
select_dialog_multichoice_material
:
Int
static
var
select_dialog_singlechoice_material
:
Int
static
var
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
string
(
)
static
var
abc_action_bar_home_description
:
Int
static
var
abc_action_bar_up_description
:
Int
static
var
abc_action_menu_overflow_description
:
Int
static
var
abc_action_mode_done
:
Int
static
var
abc_activity_chooser_view_see_all
:
Int
static
var
abc_activitychooserview_choose_application
:
Int
static
var
abc_capital_off
:
Int
static
var
abc_capital_on
:
Int
static
var
abc_font_family_body_1_material
:
Int
static
var
abc_font_family_body_2_material
:
Int
static
var
abc_font_family_button_material
:
Int
static
var
abc_font_family_caption_material
:
Int
static
var
abc_font_family_display_1_material
:
Int
static
var
abc_font_family_display_2_material
:
Int
static
var
abc_font_family_display_3_material
:
Int
static
var
abc_font_family_display_4_material
:
Int
static
var
abc_font_family_headline_material
:
Int
static
var
abc_font_family_menu_material
:
Int
static
var
abc_font_family_subhead_material
:
Int
static
var
abc_font_family_title_material
:
Int
static
var
abc_menu_alt_shortcut_label
:
Int
static
var
abc_menu_ctrl_shortcut_label
:
Int
static
var
abc_menu_delete_shortcut_label
:
Int
static
var
abc_menu_enter_shortcut_label
:
Int
static
var
abc_menu_function_shortcut_label
:
Int
static
var
abc_menu_meta_shortcut_label
:
Int
static
var
abc_menu_shift_shortcut_label
:
Int
static
var
abc_menu_space_shortcut_label
:
Int
static
var
abc_menu_sym_shortcut_label
:
Int
static
var
abc_prepend_shortcut_label
:
Int
static
var
abc_search_hint
:
Int
static
var
abc_searchview_description_clear
:
Int
static
var
abc_searchview_description_query
:
Int
static
var
abc_searchview_description_search
:
Int
static
var
abc_searchview_description_submit
:
Int
static
var
abc_searchview_description_voice
:
Int
static
var
abc_shareactionprovider_share_with
:
Int
static
var
abc_shareactionprovider_share_with_application
:
Int
static
var
abc_toolbar_collapse_description
:
Int
static
var
app_name
:
Int
static
var
appbar_scrolling_view_behavior
:
Int
static
var
bottom_sheet_behavior
:
Int
static
var
card_number_hint
:
Int
static
var
character_counter_content_description
:
Int
static
var
character_counter_pattern
:
Int
static
var
error_card_number
:
Int
static
var
error_expiry_date
:
Int
static
var
error_security_code
:
Int
static
var
expiry_date_hint
:
Int
static
var
fab_transformation_scrim_behavior
:
Int
static
var
fab_transformation_sheet_behavior
:
Int
static
var
hide_bottom_view_on_scroll_behavior
:
Int
static
var
label_card_number
:
Int
static
var
label_expiry_date
:
Int
static
var
label_security_code
:
Int
static
var
mtrl_chip_close_icon_content_description
:
Int
static
var
password_toggle_content_description
:
Int
static
var
path_password_eye
:
Int
static
var
path_password_eye_mask_strike_through
:
Int
static
var
path_password_eye_mask_visible
:
Int
static
var
path_password_strike_through
:
Int
static
var
search_menu_title
:
Int
static
var
security_code_hint_3
:
Int
static
var
security_code_hint_4
:
Int
static
var
status_bar_notification_info_overflow
:
Int
static
var
title_activity_add_card
:
Int
static
var
valid_digits
:
Int
class
style
Module Contents
style
(
)
static
var
AlertDialog_AppCompat
:
Int
static
var
AlertDialog_AppCompat_Light
:
Int
static
var
Animation_AppCompat_Dialog
:
Int
static
var
Animation_AppCompat_DropDownUp
:
Int
static
var
Animation_AppCompat_Tooltip
:
Int
static
var
Animation_Design_BottomSheetDialog
:
Int
static
var
AppTheme
:
Int
static
var
AppTheme_AppBarOverlay
:
Int
static
var
AppTheme_NoActionBar
:
Int
static
var
AppTheme_PopupOverlay
:
Int
static
var
Base_AlertDialog_AppCompat
:
Int
static
var
Base_AlertDialog_AppCompat_Light
:
Int
static
var
Base_Animation_AppCompat_Dialog
:
Int
static
var
Base_Animation_AppCompat_DropDownUp
:
Int
static
var
Base_Animation_AppCompat_Tooltip
:
Int
static
var
Base_CardView
:
Int
static
var
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
var
Base_DialogWindowTitle_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat_Body1
:
Int
static
var
Base_TextAppearance_AppCompat_Body2
:
Int
static
var
Base_TextAppearance_AppCompat_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Caption
:
Int
static
var
Base_TextAppearance_AppCompat_Display1
:
Int
static
var
Base_TextAppearance_AppCompat_Display2
:
Int
static
var
Base_TextAppearance_AppCompat_Display3
:
Int
static
var
Base_TextAppearance_AppCompat_Display4
:
Int
static
var
Base_TextAppearance_AppCompat_Headline
:
Int
static
var
Base_TextAppearance_AppCompat_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Medium
:
Int
static
var
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
Base_ThemeOverlay_AppCompat
:
Int
static
var
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
Base_ThemeOverlay_AppCompat_Light
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat
:
Int
static
var
Base_Theme_AppCompat_CompactMenu
:
Int
static
var
Base_Theme_AppCompat_Dialog
:
Int
static
var
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Base_Theme_AppCompat_Light
:
Int
static
var
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents
:
Int
static
var
Base_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
var
Base_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents_Light
:
Int
static
var
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_V14_Theme_MaterialComponents
:
Int
static
var
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat
:
Int
static
var
Base_V21_Theme_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat_Light
:
Int
static
var
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V22_Theme_AppCompat
:
Int
static
var
Base_V22_Theme_AppCompat_Light
:
Int
static
var
Base_V23_Theme_AppCompat
:
Int
static
var
Base_V23_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Theme_AppCompat
:
Int
static
var
Base_V26_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
var
Base_V28_Theme_AppCompat
:
Int
static
var
Base_V28_Theme_AppCompat_Light
:
Int
static
var
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat
:
Int
static
var
Base_V7_Theme_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat_Light
:
Int
static
var
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_V7_Widget_AppCompat_EditText
:
Int
static
var
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_ActionBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_ActionButton
:
Int
static
var
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Base_Widget_AppCompat_ActionMode
:
Int
static
var
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
var
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_Widget_AppCompat_Button
:
Int
static
var
Base_Widget_AppCompat_ButtonBar
:
Int
static
var
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_Small
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
var
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Base_Widget_AppCompat_EditText
:
Int
static
var
Base_Widget_AppCompat_ImageButton
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_ListMenuView
:
Int
static
var
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
var
Base_Widget_AppCompat_ListView
:
Int
static
var
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
var
Base_Widget_AppCompat_ListView_Menu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_PopupWindow
:
Int
static
var
Base_Widget_AppCompat_ProgressBar
:
Int
static
var
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Base_Widget_AppCompat_RatingBar
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
var
Base_Widget_AppCompat_SearchView
:
Int
static
var
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Base_Widget_AppCompat_Spinner
:
Int
static
var
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Base_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Base_Widget_Design_TabLayout
:
Int
static
var
Base_Widget_MaterialComponents_Chip
:
Int
static
var
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
var
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
var
CardView
:
Int
static
var
CardView_Dark
:
Int
static
var
CardView_Light
:
Int
static
var
PHEditTextStyle
:
Int
static
var
PHErrorAppearanceStyle
:
Int
static
var
PHTextInputLayoutStyle
:
Int
static
var
Platform_AppCompat
:
Int
static
var
Platform_AppCompat_Light
:
Int
static
var
Platform_MaterialComponents
:
Int
static
var
Platform_MaterialComponents_Dialog
:
Int
static
var
Platform_MaterialComponents_Light
:
Int
static
var
Platform_MaterialComponents_Light_Dialog
:
Int
static
var
Platform_ThemeOverlay_AppCompat
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
var
Platform_V21_AppCompat
:
Int
static
var
Platform_V21_AppCompat_Light
:
Int
static
var
Platform_V25_AppCompat
:
Int
static
var
Platform_V25_AppCompat_Light
:
Int
static
var
Platform_Widget_AppCompat_Spinner
:
Int
static
var
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
var
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
var
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
TextAppearance_AppCompat
:
Int
static
var
TextAppearance_AppCompat_Body1
:
Int
static
var
TextAppearance_AppCompat_Body2
:
Int
static
var
TextAppearance_AppCompat_Button
:
Int
static
var
TextAppearance_AppCompat_Caption
:
Int
static
var
TextAppearance_AppCompat_Display1
:
Int
static
var
TextAppearance_AppCompat_Display2
:
Int
static
var
TextAppearance_AppCompat_Display3
:
Int
static
var
TextAppearance_AppCompat_Display4
:
Int
static
var
TextAppearance_AppCompat_Headline
:
Int
static
var
TextAppearance_AppCompat_Inverse
:
Int
static
var
TextAppearance_AppCompat_Large
:
Int
static
var
TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Medium
:
Int
static
var
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
TextAppearance_AppCompat_Menu
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Small
:
Int
static
var
TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
TextAppearance_AppCompat_Subhead
:
Int
static
var
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
TextAppearance_AppCompat_Title
:
Int
static
var
TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Tooltip
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_Button
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
TextAppearance_Compat_Notification
:
Int
static
var
TextAppearance_Compat_Notification_Info
:
Int
static
var
TextAppearance_Compat_Notification_Line2
:
Int
static
var
TextAppearance_Compat_Notification_Time
:
Int
static
var
TextAppearance_Compat_Notification_Title
:
Int
static
var
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
var
TextAppearance_Design_Counter
:
Int
static
var
TextAppearance_Design_Counter_Overflow
:
Int
static
var
TextAppearance_Design_Error
:
Int
static
var
TextAppearance_Design_HelperText
:
Int
static
var
TextAppearance_Design_Hint
:
Int
static
var
TextAppearance_Design_Snackbar_Message
:
Int
static
var
TextAppearance_Design_Tab
:
Int
static
var
TextAppearance_MaterialComponents_Body1
:
Int
static
var
TextAppearance_MaterialComponents_Body2
:
Int
static
var
TextAppearance_MaterialComponents_Button
:
Int
static
var
TextAppearance_MaterialComponents_Caption
:
Int
static
var
TextAppearance_MaterialComponents_Chip
:
Int
static
var
TextAppearance_MaterialComponents_Headline1
:
Int
static
var
TextAppearance_MaterialComponents_Headline2
:
Int
static
var
TextAppearance_MaterialComponents_Headline3
:
Int
static
var
TextAppearance_MaterialComponents_Headline4
:
Int
static
var
TextAppearance_MaterialComponents_Headline5
:
Int
static
var
TextAppearance_MaterialComponents_Headline6
:
Int
static
var
TextAppearance_MaterialComponents_Overline
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
var
TextAppearance_MaterialComponents_Tab
:
Int
static
var
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
ThemeOverlay_AppCompat
:
Int
static
var
ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dark
:
Int
static
var
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dialog
:
Int
static
var
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
ThemeOverlay_AppCompat_Light
:
Int
static
var
ThemeOverlay_MaterialComponents
:
Int
static
var
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
ThemeOverlay_MaterialComponents_Light
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Theme_AppCompat
:
Int
static
var
Theme_AppCompat_CompactMenu
:
Int
static
var
Theme_AppCompat_DayNight
:
Int
static
var
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
var
Theme_AppCompat_DayNight_Dialog
:
Int
static
var
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
var
Theme_AppCompat_Dialog
:
Int
static
var
Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light
:
Int
static
var
Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Theme_AppCompat_Light_Dialog
:
Int
static
var
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light_NoActionBar
:
Int
static
var
Theme_AppCompat_NoActionBar
:
Int
static
var
Theme_Design
:
Int
static
var
Theme_Design_BottomSheetDialog
:
Int
static
var
Theme_Design_Light
:
Int
static
var
Theme_Design_Light_BottomSheetDialog
:
Int
static
var
Theme_Design_Light_NoActionBar
:
Int
static
var
Theme_Design_NoActionBar
:
Int
static
var
Theme_MaterialComponents
:
Int
static
var
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Bridge
:
Int
static
var
Theme_MaterialComponents_CompactMenu
:
Int
static
var
Theme_MaterialComponents_Dialog
:
Int
static
var
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light
:
Int
static
var
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_NoActionBar
:
Int
static
var
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
var
Widget_AppCompat_ActionBar
:
Int
static
var
Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_ActionButton
:
Int
static
var
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_ActionMode
:
Int
static
var
Widget_AppCompat_ActivityChooserView
:
Int
static
var
Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Button
:
Int
static
var
Widget_AppCompat_ButtonBar
:
Int
static
var
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Borderless
:
Int
static
var
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Colored
:
Int
static
var
Widget_AppCompat_Button_Small
:
Int
static
var
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_EditText
:
Int
static
var
Widget_AppCompat_ImageButton
:
Int
static
var
Widget_AppCompat_Light_ActionBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionButton
:
Int
static
var
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
var
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
var
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
var
Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_Light_SearchView
:
Int
static
var
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_ListMenuView
:
Int
static
var
Widget_AppCompat_ListPopupWindow
:
Int
static
var
Widget_AppCompat_ListView
:
Int
static
var
Widget_AppCompat_ListView_DropDown
:
Int
static
var
Widget_AppCompat_ListView_Menu
:
Int
static
var
Widget_AppCompat_PopupMenu
:
Int
static
var
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_PopupWindow
:
Int
static
var
Widget_AppCompat_ProgressBar
:
Int
static
var
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Widget_AppCompat_RatingBar
:
Int
static
var
Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Widget_AppCompat_RatingBar_Small
:
Int
static
var
Widget_AppCompat_SearchView
:
Int
static
var
Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Widget_AppCompat_SeekBar
:
Int
static
var
Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Widget_AppCompat_Spinner
:
Int
static
var
Widget_AppCompat_Spinner_DropDown
:
Int
static
var
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Widget_AppCompat_Toolbar
:
Int
static
var
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Widget_Compat_NotificationActionContainer
:
Int
static
var
Widget_Compat_NotificationActionText
:
Int
static
var
Widget_Design_AppBarLayout
:
Int
static
var
Widget_Design_BottomNavigationView
:
Int
static
var
Widget_Design_BottomSheet_Modal
:
Int
static
var
Widget_Design_CollapsingToolbar
:
Int
static
var
Widget_Design_FloatingActionButton
:
Int
static
var
Widget_Design_NavigationView
:
Int
static
var
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
var
Widget_Design_Snackbar
:
Int
static
var
Widget_Design_TabLayout
:
Int
static
var
Widget_Design_TextInputLayout
:
Int
static
var
Widget_MaterialComponents_BottomAppBar
:
Int
static
var
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
var
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
var
Widget_MaterialComponents_Button
:
Int
static
var
Widget_MaterialComponents_Button_Icon
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
var
Widget_MaterialComponents_CardView
:
Int
static
var
Widget_MaterialComponents_ChipGroup
:
Int
static
var
Widget_MaterialComponents_Chip_Action
:
Int
static
var
Widget_MaterialComponents_Chip_Choice
:
Int
static
var
Widget_MaterialComponents_Chip_Entry
:
Int
static
var
Widget_MaterialComponents_Chip_Filter
:
Int
static
var
Widget_MaterialComponents_FloatingActionButton
:
Int
static
var
Widget_MaterialComponents_NavigationView
:
Int
static
var
Widget_MaterialComponents_Snackbar
:
Int
static
var
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
var
Widget_MaterialComponents_TabLayout
:
Int
static
var
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_Toolbar
:
Int
static
var
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
var
ActionBar
:
IntArray
static
var
ActionBarLayout
:
IntArray
static
var
ActionBarLayout_android_layout_gravity
:
Int
static
var
ActionBar_background
:
Int
static
var
ActionBar_backgroundSplit
:
Int
static
var
ActionBar_backgroundStacked
:
Int
static
var
ActionBar_contentInsetEnd
:
Int
static
var
ActionBar_contentInsetEndWithActions
:
Int
static
var
ActionBar_contentInsetLeft
:
Int
static
var
ActionBar_contentInsetRight
:
Int
static
var
ActionBar_contentInsetStart
:
Int
static
var
ActionBar_contentInsetStartWithNavigation
:
Int
static
var
ActionBar_customNavigationLayout
:
Int
static
var
ActionBar_displayOptions
:
Int
static
var
ActionBar_divider
:
Int
static
var
ActionBar_elevation
:
Int
static
var
ActionBar_height
:
Int
static
var
ActionBar_hideOnContentScroll
:
Int
static
var
ActionBar_homeAsUpIndicator
:
Int
static
var
ActionBar_homeLayout
:
Int
static
var
ActionBar_icon
:
Int
static
var
ActionBar_indeterminateProgressStyle
:
Int
static
var
ActionBar_itemPadding
:
Int
static
var
ActionBar_logo
:
Int
static
var
ActionBar_navigationMode
:
Int
static
var
ActionBar_popupTheme
:
Int
static
var
ActionBar_progressBarPadding
:
Int
static
var
ActionBar_progressBarStyle
:
Int
static
var
ActionBar_subtitle
:
Int
static
var
ActionBar_subtitleTextStyle
:
Int
static
var
ActionBar_title
:
Int
static
var
ActionBar_titleTextStyle
:
Int
static
var
ActionMenuItemView
:
IntArray
static
var
ActionMenuItemView_android_minWidth
:
Int
static
var
ActionMode
:
IntArray
static
var
ActionMode_background
:
Int
static
var
ActionMode_backgroundSplit
:
Int
static
var
ActionMode_closeItemLayout
:
Int
static
var
ActionMode_height
:
Int
static
var
ActionMode_subtitleTextStyle
:
Int
static
var
ActionMode_titleTextStyle
:
Int
static
var
ActivityChooserView
:
IntArray
static
var
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
var
ActivityChooserView_initialActivityCount
:
Int
static
var
AlertDialog
:
IntArray
static
var
AlertDialog_android_layout
:
Int
static
var
AlertDialog_buttonIconDimen
:
Int
static
var
AlertDialog_buttonPanelSideLayout
:
Int
static
var
AlertDialog_listItemLayout
:
Int
static
var
AlertDialog_listLayout
:
Int
static
var
AlertDialog_multiChoiceItemLayout
:
Int
static
var
AlertDialog_showTitle
:
Int
static
var
AlertDialog_singleChoiceItemLayout
:
Int
static
var
AnimatedStateListDrawableCompat
:
IntArray
static
var
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
var
AnimatedStateListDrawableCompat_android_dither
:
Int
static
var
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
var
AnimatedStateListDrawableCompat_android_visible
:
Int
static
var
AnimatedStateListDrawableItem
:
IntArray
static
var
AnimatedStateListDrawableItem_android_drawable
:
Int
static
var
AnimatedStateListDrawableItem_android_id
:
Int
static
var
AnimatedStateListDrawableTransition
:
IntArray
static
var
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
var
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
var
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
var
AnimatedStateListDrawableTransition_android_toId
:
Int
static
var
AppBarLayout
:
IntArray
static
var
AppBarLayoutStates
:
IntArray
static
var
AppBarLayoutStates_state_collapsed
:
Int
static
var
AppBarLayoutStates_state_collapsible
:
Int
static
var
AppBarLayoutStates_state_liftable
:
Int
static
var
AppBarLayoutStates_state_lifted
:
Int
static
var
AppBarLayout_Layout
:
IntArray
static
var
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
var
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
var
AppBarLayout_android_background
:
Int
static
var
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
var
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
var
AppBarLayout_elevation
:
Int
static
var
AppBarLayout_expanded
:
Int
static
var
AppBarLayout_liftOnScroll
:
Int
static
var
AppCompatImageView
:
IntArray
static
var
AppCompatImageView_android_src
:
Int
static
var
AppCompatImageView_srcCompat
:
Int
static
var
AppCompatImageView_tint
:
Int
static
var
AppCompatImageView_tintMode
:
Int
static
var
AppCompatSeekBar
:
IntArray
static
var
AppCompatSeekBar_android_thumb
:
Int
static
var
AppCompatSeekBar_tickMark
:
Int
static
var
AppCompatSeekBar_tickMarkTint
:
Int
static
var
AppCompatSeekBar_tickMarkTintMode
:
Int
static
var
AppCompatTextHelper
:
IntArray
static
var
AppCompatTextHelper_android_drawableBottom
:
Int
static
var
AppCompatTextHelper_android_drawableEnd
:
Int
static
var
AppCompatTextHelper_android_drawableLeft
:
Int
static
var
AppCompatTextHelper_android_drawableRight
:
Int
static
var
AppCompatTextHelper_android_drawableStart
:
Int
static
var
AppCompatTextHelper_android_drawableTop
:
Int
static
var
AppCompatTextHelper_android_textAppearance
:
Int
static
var
AppCompatTextView
:
IntArray
static
var
AppCompatTextView_android_textAppearance
:
Int
static
var
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
var
AppCompatTextView_autoSizeMinTextSize
:
Int
static
var
AppCompatTextView_autoSizePresetSizes
:
Int
static
var
AppCompatTextView_autoSizeStepGranularity
:
Int
static
var
AppCompatTextView_autoSizeTextType
:
Int
static
var
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
var
AppCompatTextView_fontFamily
:
Int
static
var
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
var
AppCompatTextView_lineHeight
:
Int
static
var
AppCompatTextView_textAllCaps
:
Int
static
var
AppCompatTheme
:
IntArray
static
var
AppCompatTheme_actionBarDivider
:
Int
static
var
AppCompatTheme_actionBarItemBackground
:
Int
static
var
AppCompatTheme_actionBarPopupTheme
:
Int
static
var
AppCompatTheme_actionBarSize
:
Int
static
var
AppCompatTheme_actionBarSplitStyle
:
Int
static
var
AppCompatTheme_actionBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabStyle
:
Int
static
var
AppCompatTheme_actionBarTabTextStyle
:
Int
static
var
AppCompatTheme_actionBarTheme
:
Int
static
var
AppCompatTheme_actionBarWidgetTheme
:
Int
static
var
AppCompatTheme_actionButtonStyle
:
Int
static
var
AppCompatTheme_actionDropDownStyle
:
Int
static
var
AppCompatTheme_actionMenuTextAppearance
:
Int
static
var
AppCompatTheme_actionMenuTextColor
:
Int
static
var
AppCompatTheme_actionModeBackground
:
Int
static
var
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
var
AppCompatTheme_actionModeCloseDrawable
:
Int
static
var
AppCompatTheme_actionModeCopyDrawable
:
Int
static
var
AppCompatTheme_actionModeCutDrawable
:
Int
static
var
AppCompatTheme_actionModeFindDrawable
:
Int
static
var
AppCompatTheme_actionModePasteDrawable
:
Int
static
var
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
var
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
var
AppCompatTheme_actionModeShareDrawable
:
Int
static
var
AppCompatTheme_actionModeSplitBackground
:
Int
static
var
AppCompatTheme_actionModeStyle
:
Int
static
var
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
var
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
var
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
var
AppCompatTheme_activityChooserViewStyle
:
Int
static
var
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
var
AppCompatTheme_alertDialogCenterButtons
:
Int
static
var
AppCompatTheme_alertDialogStyle
:
Int
static
var
AppCompatTheme_alertDialogTheme
:
Int
static
var
AppCompatTheme_android_windowAnimationStyle
:
Int
static
var
AppCompatTheme_android_windowIsFloating
:
Int
static
var
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
var
AppCompatTheme_borderlessButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarStyle
:
Int
static
var
AppCompatTheme_buttonStyle
:
Int
static
var
AppCompatTheme_buttonStyleSmall
:
Int
static
var
AppCompatTheme_checkboxStyle
:
Int
static
var
AppCompatTheme_checkedTextViewStyle
:
Int
static
var
AppCompatTheme_colorAccent
:
Int
static
var
AppCompatTheme_colorBackgroundFloating
:
Int
static
var
AppCompatTheme_colorButtonNormal
:
Int
static
var
AppCompatTheme_colorControlActivated
:
Int
static
var
AppCompatTheme_colorControlHighlight
:
Int
static
var
AppCompatTheme_colorControlNormal
:
Int
static
var
AppCompatTheme_colorError
:
Int
static
var
AppCompatTheme_colorPrimary
:
Int
static
var
AppCompatTheme_colorPrimaryDark
:
Int
static
var
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
var
AppCompatTheme_controlBackground
:
Int
static
var
AppCompatTheme_dialogCornerRadius
:
Int
static
var
AppCompatTheme_dialogPreferredPadding
:
Int
static
var
AppCompatTheme_dialogTheme
:
Int
static
var
AppCompatTheme_dividerHorizontal
:
Int
static
var
AppCompatTheme_dividerVertical
:
Int
static
var
AppCompatTheme_dropDownListViewStyle
:
Int
static
var
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
var
AppCompatTheme_editTextBackground
:
Int
static
var
AppCompatTheme_editTextColor
:
Int
static
var
AppCompatTheme_editTextStyle
:
Int
static
var
AppCompatTheme_homeAsUpIndicator
:
Int
static
var
AppCompatTheme_imageButtonStyle
:
Int
static
var
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
var
AppCompatTheme_listDividerAlertDialog
:
Int
static
var
AppCompatTheme_listMenuViewStyle
:
Int
static
var
AppCompatTheme_listPopupWindowStyle
:
Int
static
var
AppCompatTheme_listPreferredItemHeight
:
Int
static
var
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
var
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
var
AppCompatTheme_panelBackground
:
Int
static
var
AppCompatTheme_panelMenuListTheme
:
Int
static
var
AppCompatTheme_panelMenuListWidth
:
Int
static
var
AppCompatTheme_popupMenuStyle
:
Int
static
var
AppCompatTheme_popupWindowStyle
:
Int
static
var
AppCompatTheme_radioButtonStyle
:
Int
static
var
AppCompatTheme_ratingBarStyle
:
Int
static
var
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
var
AppCompatTheme_ratingBarStyleSmall
:
Int
static
var
AppCompatTheme_searchViewStyle
:
Int
static
var
AppCompatTheme_seekBarStyle
:
Int
static
var
AppCompatTheme_selectableItemBackground
:
Int
static
var
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
var
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
var
AppCompatTheme_spinnerStyle
:
Int
static
var
AppCompatTheme_switchStyle
:
Int
static
var
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
var
AppCompatTheme_textAppearanceListItem
:
Int
static
var
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
var
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
var
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
var
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
var
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
var
AppCompatTheme_textColorSearchUrl
:
Int
static
var
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
var
AppCompatTheme_toolbarStyle
:
Int
static
var
AppCompatTheme_tooltipForegroundColor
:
Int
static
var
AppCompatTheme_tooltipFrameBackground
:
Int
static
var
AppCompatTheme_viewInflaterClass
:
Int
static
var
AppCompatTheme_windowActionBar
:
Int
static
var
AppCompatTheme_windowActionBarOverlay
:
Int
static
var
AppCompatTheme_windowActionModeOverlay
:
Int
static
var
AppCompatTheme_windowFixedHeightMajor
:
Int
static
var
AppCompatTheme_windowFixedHeightMinor
:
Int
static
var
AppCompatTheme_windowFixedWidthMajor
:
Int
static
var
AppCompatTheme_windowFixedWidthMinor
:
Int
static
var
AppCompatTheme_windowMinWidthMajor
:
Int
static
var
AppCompatTheme_windowMinWidthMinor
:
Int
static
var
AppCompatTheme_windowNoTitle
:
Int
static
var
BottomAppBar
:
IntArray
static
var
BottomAppBar_backgroundTint
:
Int
static
var
BottomAppBar_fabAlignmentMode
:
Int
static
var
BottomAppBar_fabCradleMargin
:
Int
static
var
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
var
BottomAppBar_fabCradleVerticalOffset
:
Int
static
var
BottomAppBar_hideOnScroll
:
Int
static
var
BottomNavigationView
:
IntArray
static
var
BottomNavigationView_elevation
:
Int
static
var
BottomNavigationView_itemBackground
:
Int
static
var
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
var
BottomNavigationView_itemIconSize
:
Int
static
var
BottomNavigationView_itemIconTint
:
Int
static
var
BottomNavigationView_itemTextAppearanceActive
:
Int
static
var
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
var
BottomNavigationView_itemTextColor
:
Int
static
var
BottomNavigationView_labelVisibilityMode
:
Int
static
var
BottomNavigationView_menu
:
Int
static
var
BottomSheetBehavior_Layout
:
IntArray
static
var
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
var
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
var
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
var
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
var
ButtonBarLayout
:
IntArray
static
var
ButtonBarLayout_allowStacking
:
Int
static
var
CardView
:
IntArray
static
var
CardView_android_minHeight
:
Int
static
var
CardView_android_minWidth
:
Int
static
var
CardView_cardBackgroundColor
:
Int
static
var
CardView_cardCornerRadius
:
Int
static
var
CardView_cardElevation
:
Int
static
var
CardView_cardMaxElevation
:
Int
static
var
CardView_cardPreventCornerOverlap
:
Int
static
var
CardView_cardUseCompatPadding
:
Int
static
var
CardView_contentPadding
:
Int
static
var
CardView_contentPaddingBottom
:
Int
static
var
CardView_contentPaddingLeft
:
Int
static
var
CardView_contentPaddingRight
:
Int
static
var
CardView_contentPaddingTop
:
Int
static
var
Chip
:
IntArray
static
var
ChipGroup
:
IntArray
static
var
ChipGroup_checkedChip
:
Int
static
var
ChipGroup_chipSpacing
:
Int
static
var
ChipGroup_chipSpacingHorizontal
:
Int
static
var
ChipGroup_chipSpacingVertical
:
Int
static
var
ChipGroup_singleLine
:
Int
static
var
ChipGroup_singleSelection
:
Int
static
var
Chip_android_checkable
:
Int
static
var
Chip_android_ellipsize
:
Int
static
var
Chip_android_maxWidth
:
Int
static
var
Chip_android_text
:
Int
static
var
Chip_android_textAppearance
:
Int
static
var
Chip_checkedIcon
:
Int
static
var
Chip_checkedIconEnabled
:
Int
static
var
Chip_checkedIconVisible
:
Int
static
var
Chip_chipBackgroundColor
:
Int
static
var
Chip_chipCornerRadius
:
Int
static
var
Chip_chipEndPadding
:
Int
static
var
Chip_chipIcon
:
Int
static
var
Chip_chipIconEnabled
:
Int
static
var
Chip_chipIconSize
:
Int
static
var
Chip_chipIconTint
:
Int
static
var
Chip_chipIconVisible
:
Int
static
var
Chip_chipMinHeight
:
Int
static
var
Chip_chipStartPadding
:
Int
static
var
Chip_chipStrokeColor
:
Int
static
var
Chip_chipStrokeWidth
:
Int
static
var
Chip_closeIcon
:
Int
static
var
Chip_closeIconEnabled
:
Int
static
var
Chip_closeIconEndPadding
:
Int
static
var
Chip_closeIconSize
:
Int
static
var
Chip_closeIconStartPadding
:
Int
static
var
Chip_closeIconTint
:
Int
static
var
Chip_closeIconVisible
:
Int
static
var
Chip_hideMotionSpec
:
Int
static
var
Chip_iconEndPadding
:
Int
static
var
Chip_iconStartPadding
:
Int
static
var
Chip_rippleColor
:
Int
static
var
Chip_showMotionSpec
:
Int
static
var
Chip_textEndPadding
:
Int
static
var
Chip_textStartPadding
:
Int
static
var
CollapsingToolbarLayout
:
IntArray
static
var
CollapsingToolbarLayout_Layout
:
IntArray
static
var
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
var
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_contentScrim
:
Int
static
var
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
var
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
var
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
var
CollapsingToolbarLayout_statusBarScrim
:
Int
static
var
CollapsingToolbarLayout_title
:
Int
static
var
CollapsingToolbarLayout_titleEnabled
:
Int
static
var
CollapsingToolbarLayout_toolbarId
:
Int
static
var
ColorStateListItem
:
IntArray
static
var
ColorStateListItem_alpha
:
Int
static
var
ColorStateListItem_android_alpha
:
Int
static
var
ColorStateListItem_android_color
:
Int
static
var
CompoundButton
:
IntArray
static
var
CompoundButton_android_button
:
Int
static
var
CompoundButton_buttonTint
:
Int
static
var
CompoundButton_buttonTintMode
:
Int
static
var
ConstraintLayout_Layout
:
IntArray
static
var
ConstraintLayout_Layout_android_maxHeight
:
Int
static
var
ConstraintLayout_Layout_android_maxWidth
:
Int
static
var
ConstraintLayout_Layout_android_minHeight
:
Int
static
var
ConstraintLayout_Layout_android_minWidth
:
Int
static
var
ConstraintLayout_Layout_android_orientation
:
Int
static
var
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
var
ConstraintLayout_Layout_barrierDirection
:
Int
static
var
ConstraintLayout_Layout_chainUseRtl
:
Int
static
var
ConstraintLayout_Layout_constraintSet
:
Int
static
var
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
var
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
var
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
var
ConstraintLayout_placeholder
:
IntArray
static
var
ConstraintLayout_placeholder_content
:
Int
static
var
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
var
ConstraintSet
:
IntArray
static
var
ConstraintSet_android_alpha
:
Int
static
var
ConstraintSet_android_elevation
:
Int
static
var
ConstraintSet_android_id
:
Int
static
var
ConstraintSet_android_layout_height
:
Int
static
var
ConstraintSet_android_layout_marginBottom
:
Int
static
var
ConstraintSet_android_layout_marginEnd
:
Int
static
var
ConstraintSet_android_layout_marginLeft
:
Int
static
var
ConstraintSet_android_layout_marginRight
:
Int
static
var
ConstraintSet_android_layout_marginStart
:
Int
static
var
ConstraintSet_android_layout_marginTop
:
Int
static
var
ConstraintSet_android_layout_width
:
Int
static
var
ConstraintSet_android_orientation
:
Int
static
var
ConstraintSet_android_rotation
:
Int
static
var
ConstraintSet_android_rotationX
:
Int
static
var
ConstraintSet_android_rotationY
:
Int
static
var
ConstraintSet_android_scaleX
:
Int
static
var
ConstraintSet_android_scaleY
:
Int
static
var
ConstraintSet_android_transformPivotX
:
Int
static
var
ConstraintSet_android_transformPivotY
:
Int
static
var
ConstraintSet_android_translationX
:
Int
static
var
ConstraintSet_android_translationY
:
Int
static
var
ConstraintSet_android_translationZ
:
Int
static
var
ConstraintSet_android_visibility
:
Int
static
var
ConstraintSet_layout_constrainedHeight
:
Int
static
var
ConstraintSet_layout_constrainedWidth
:
Int
static
var
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
var
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_creator
:
Int
static
var
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintCircle
:
Int
static
var
ConstraintSet_layout_constraintCircleAngle
:
Int
static
var
ConstraintSet_layout_constraintCircleRadius
:
Int
static
var
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
var
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintGuide_begin
:
Int
static
var
ConstraintSet_layout_constraintGuide_end
:
Int
static
var
ConstraintSet_layout_constraintGuide_percent
:
Int
static
var
ConstraintSet_layout_constraintHeight_default
:
Int
static
var
ConstraintSet_layout_constraintHeight_max
:
Int
static
var
ConstraintSet_layout_constraintHeight_min
:
Int
static
var
ConstraintSet_layout_constraintHeight_percent
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintSet_layout_constraintLeft_creator
:
Int
static
var
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintRight_creator
:
Int
static
var
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintTop_creator
:
Int
static
var
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintVertical_bias
:
Int
static
var
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintVertical_weight
:
Int
static
var
ConstraintSet_layout_constraintWidth_default
:
Int
static
var
ConstraintSet_layout_constraintWidth_max
:
Int
static
var
ConstraintSet_layout_constraintWidth_min
:
Int
static
var
ConstraintSet_layout_constraintWidth_percent
:
Int
static
var
ConstraintSet_layout_editor_absoluteX
:
Int
static
var
ConstraintSet_layout_editor_absoluteY
:
Int
static
var
ConstraintSet_layout_goneMarginBottom
:
Int
static
var
ConstraintSet_layout_goneMarginEnd
:
Int
static
var
ConstraintSet_layout_goneMarginLeft
:
Int
static
var
ConstraintSet_layout_goneMarginRight
:
Int
static
var
ConstraintSet_layout_goneMarginStart
:
Int
static
var
ConstraintSet_layout_goneMarginTop
:
Int
static
var
CoordinatorLayout
:
IntArray
static
var
CoordinatorLayout_Layout
:
IntArray
static
var
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
var
CoordinatorLayout_Layout_layout_anchor
:
Int
static
var
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
var
CoordinatorLayout_Layout_layout_behavior
:
Int
static
var
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
var
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
var
CoordinatorLayout_Layout_layout_keyline
:
Int
static
var
CoordinatorLayout_keylines
:
Int
static
var
CoordinatorLayout_statusBarBackground
:
Int
static
var
DesignTheme
:
IntArray
static
var
DesignTheme_bottomSheetDialogTheme
:
Int
static
var
DesignTheme_bottomSheetStyle
:
Int
static
var
DrawerArrowToggle
:
IntArray
static
var
DrawerArrowToggle_arrowHeadLength
:
Int
static
var
DrawerArrowToggle_arrowShaftLength
:
Int
static
var
DrawerArrowToggle_barLength
:
Int
static
var
DrawerArrowToggle_color
:
Int
static
var
DrawerArrowToggle_drawableSize
:
Int
static
var
DrawerArrowToggle_gapBetweenBars
:
Int
static
var
DrawerArrowToggle_spinBars
:
Int
static
var
DrawerArrowToggle_thickness
:
Int
static
var
FloatingActionButton
:
IntArray
static
var
FloatingActionButton_Behavior_Layout
:
IntArray
static
var
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
var
FloatingActionButton_backgroundTint
:
Int
static
var
FloatingActionButton_backgroundTintMode
:
Int
static
var
FloatingActionButton_borderWidth
:
Int
static
var
FloatingActionButton_elevation
:
Int
static
var
FloatingActionButton_fabCustomSize
:
Int
static
var
FloatingActionButton_fabSize
:
Int
static
var
FloatingActionButton_hideMotionSpec
:
Int
static
var
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
var
FloatingActionButton_maxImageSize
:
Int
static
var
FloatingActionButton_pressedTranslationZ
:
Int
static
var
FloatingActionButton_rippleColor
:
Int
static
var
FloatingActionButton_showMotionSpec
:
Int
static
var
FloatingActionButton_useCompatPadding
:
Int
static
var
FlowLayout
:
IntArray
static
var
FlowLayout_itemSpacing
:
Int
static
var
FlowLayout_lineSpacing
:
Int
static
var
FontFamily
:
IntArray
static
var
FontFamilyFont
:
IntArray
static
var
FontFamilyFont_android_font
:
Int
static
var
FontFamilyFont_android_fontStyle
:
Int
static
var
FontFamilyFont_android_fontVariationSettings
:
Int
static
var
FontFamilyFont_android_fontWeight
:
Int
static
var
FontFamilyFont_android_ttcIndex
:
Int
static
var
FontFamilyFont_font
:
Int
static
var
FontFamilyFont_fontStyle
:
Int
static
var
FontFamilyFont_fontVariationSettings
:
Int
static
var
FontFamilyFont_fontWeight
:
Int
static
var
FontFamilyFont_ttcIndex
:
Int
static
var
FontFamily_fontProviderAuthority
:
Int
static
var
FontFamily_fontProviderCerts
:
Int
static
var
FontFamily_fontProviderFetchStrategy
:
Int
static
var
FontFamily_fontProviderFetchTimeout
:
Int
static
var
FontFamily_fontProviderPackage
:
Int
static
var
FontFamily_fontProviderQuery
:
Int
static
var
ForegroundLinearLayout
:
IntArray
static
var
ForegroundLinearLayout_android_foreground
:
Int
static
var
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
var
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
var
GradientColor
:
IntArray
static
var
GradientColorItem
:
IntArray
static
var
GradientColorItem_android_color
:
Int
static
var
GradientColorItem_android_offset
:
Int
static
var
GradientColor_android_centerColor
:
Int
static
var
GradientColor_android_centerX
:
Int
static
var
GradientColor_android_centerY
:
Int
static
var
GradientColor_android_endColor
:
Int
static
var
GradientColor_android_endX
:
Int
static
var
GradientColor_android_endY
:
Int
static
var
GradientColor_android_gradientRadius
:
Int
static
var
GradientColor_android_startColor
:
Int
static
var
GradientColor_android_startX
:
Int
static
var
GradientColor_android_startY
:
Int
static
var
GradientColor_android_tileMode
:
Int
static
var
GradientColor_android_type
:
Int
static
var
LinearConstraintLayout
:
IntArray
static
var
LinearConstraintLayout_android_orientation
:
Int
static
var
LinearLayoutCompat
:
IntArray
static
var
LinearLayoutCompat_Layout
:
IntArray
static
var
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
var
LinearLayoutCompat_android_baselineAligned
:
Int
static
var
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
var
LinearLayoutCompat_android_gravity
:
Int
static
var
LinearLayoutCompat_android_orientation
:
Int
static
var
LinearLayoutCompat_android_weightSum
:
Int
static
var
LinearLayoutCompat_divider
:
Int
static
var
LinearLayoutCompat_dividerPadding
:
Int
static
var
LinearLayoutCompat_measureWithLargestChild
:
Int
static
var
LinearLayoutCompat_showDividers
:
Int
static
var
ListPopupWindow
:
IntArray
static
var
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
var
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
var
MaterialButton
:
IntArray
static
var
MaterialButton_android_insetBottom
:
Int
static
var
MaterialButton_android_insetLeft
:
Int
static
var
MaterialButton_android_insetRight
:
Int
static
var
MaterialButton_android_insetTop
:
Int
static
var
MaterialButton_backgroundTint
:
Int
static
var
MaterialButton_backgroundTintMode
:
Int
static
var
MaterialButton_cornerRadius
:
Int
static
var
MaterialButton_icon
:
Int
static
var
MaterialButton_iconGravity
:
Int
static
var
MaterialButton_iconPadding
:
Int
static
var
MaterialButton_iconSize
:
Int
static
var
MaterialButton_iconTint
:
Int
static
var
MaterialButton_iconTintMode
:
Int
static
var
MaterialButton_rippleColor
:
Int
static
var
MaterialButton_strokeColor
:
Int
static
var
MaterialButton_strokeWidth
:
Int
static
var
MaterialCardView
:
IntArray
static
var
MaterialCardView_strokeColor
:
Int
static
var
MaterialCardView_strokeWidth
:
Int
static
var
MaterialComponentsTheme
:
IntArray
static
var
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
var
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
var
MaterialComponentsTheme_chipGroupStyle
:
Int
static
var
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
var
MaterialComponentsTheme_chipStyle
:
Int
static
var
MaterialComponentsTheme_colorAccent
:
Int
static
var
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
var
MaterialComponentsTheme_colorPrimary
:
Int
static
var
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
var
MaterialComponentsTheme_colorSecondary
:
Int
static
var
MaterialComponentsTheme_editTextStyle
:
Int
static
var
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
var
MaterialComponentsTheme_navigationViewStyle
:
Int
static
var
MaterialComponentsTheme_scrimBackground
:
Int
static
var
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
var
MaterialComponentsTheme_tabStyle
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
var
MaterialComponentsTheme_textAppearanceButton
:
Int
static
var
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
var
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
var
MaterialComponentsTheme_textInputStyle
:
Int
static
var
MenuGroup
:
IntArray
static
var
MenuGroup_android_checkableBehavior
:
Int
static
var
MenuGroup_android_enabled
:
Int
static
var
MenuGroup_android_id
:
Int
static
var
MenuGroup_android_menuCategory
:
Int
static
var
MenuGroup_android_orderInCategory
:
Int
static
var
MenuGroup_android_visible
:
Int
static
var
MenuItem
:
IntArray
static
var
MenuItem_actionLayout
:
Int
static
var
MenuItem_actionProviderClass
:
Int
static
var
MenuItem_actionViewClass
:
Int
static
var
MenuItem_alphabeticModifiers
:
Int
static
var
MenuItem_android_alphabeticShortcut
:
Int
static
var
MenuItem_android_checkable
:
Int
static
var
MenuItem_android_checked
:
Int
static
var
MenuItem_android_enabled
:
Int
static
var
MenuItem_android_icon
:
Int
static
var
MenuItem_android_id
:
Int
static
var
MenuItem_android_menuCategory
:
Int
static
var
MenuItem_android_numericShortcut
:
Int
static
var
MenuItem_android_onClick
:
Int
static
var
MenuItem_android_orderInCategory
:
Int
static
var
MenuItem_android_title
:
Int
static
var
MenuItem_android_titleCondensed
:
Int
static
var
MenuItem_android_visible
:
Int
static
var
MenuItem_contentDescription
:
Int
static
var
MenuItem_iconTint
:
Int
static
var
MenuItem_iconTintMode
:
Int
static
var
MenuItem_numericModifiers
:
Int
static
var
MenuItem_showAsAction
:
Int
static
var
MenuItem_tooltipText
:
Int
static
var
MenuView
:
IntArray
static
var
MenuView_android_headerBackground
:
Int
static
var
MenuView_android_horizontalDivider
:
Int
static
var
MenuView_android_itemBackground
:
Int
static
var
MenuView_android_itemIconDisabledAlpha
:
Int
static
var
MenuView_android_itemTextAppearance
:
Int
static
var
MenuView_android_verticalDivider
:
Int
static
var
MenuView_android_windowAnimationStyle
:
Int
static
var
MenuView_preserveIconSpacing
:
Int
static
var
MenuView_subMenuArrow
:
Int
static
var
NavigationView
:
IntArray
static
var
NavigationView_android_background
:
Int
static
var
NavigationView_android_fitsSystemWindows
:
Int
static
var
NavigationView_android_maxWidth
:
Int
static
var
NavigationView_elevation
:
Int
static
var
NavigationView_headerLayout
:
Int
static
var
NavigationView_itemBackground
:
Int
static
var
NavigationView_itemHorizontalPadding
:
Int
static
var
NavigationView_itemIconPadding
:
Int
static
var
NavigationView_itemIconTint
:
Int
static
var
NavigationView_itemTextAppearance
:
Int
static
var
NavigationView_itemTextColor
:
Int
static
var
NavigationView_menu
:
Int
static
var
PopupWindow
:
IntArray
static
var
PopupWindowBackgroundState
:
IntArray
static
var
PopupWindowBackgroundState_state_above_anchor
:
Int
static
var
PopupWindow_android_popupAnimationStyle
:
Int
static
var
PopupWindow_android_popupBackground
:
Int
static
var
PopupWindow_overlapAnchor
:
Int
static
var
RecycleListView
:
IntArray
static
var
RecycleListView_paddingBottomNoButtons
:
Int
static
var
RecycleListView_paddingTopNoTitle
:
Int
static
var
RecyclerView
:
IntArray
static
var
RecyclerView_android_descendantFocusability
:
Int
static
var
RecyclerView_android_orientation
:
Int
static
var
RecyclerView_fastScrollEnabled
:
Int
static
var
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
var
RecyclerView_layoutManager
:
Int
static
var
RecyclerView_reverseLayout
:
Int
static
var
RecyclerView_spanCount
:
Int
static
var
RecyclerView_stackFromEnd
:
Int
static
var
ScrimInsetsFrameLayout
:
IntArray
static
var
ScrimInsetsFrameLayout_insetForeground
:
Int
static
var
ScrollingViewBehavior_Layout
:
IntArray
static
var
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
var
SearchView
:
IntArray
static
var
SearchView_android_focusable
:
Int
static
var
SearchView_android_imeOptions
:
Int
static
var
SearchView_android_inputType
:
Int
static
var
SearchView_android_maxWidth
:
Int
static
var
SearchView_closeIcon
:
Int
static
var
SearchView_commitIcon
:
Int
static
var
SearchView_defaultQueryHint
:
Int
static
var
SearchView_goIcon
:
Int
static
var
SearchView_iconifiedByDefault
:
Int
static
var
SearchView_layout
:
Int
static
var
SearchView_queryBackground
:
Int
static
var
SearchView_queryHint
:
Int
static
var
SearchView_searchHintIcon
:
Int
static
var
SearchView_searchIcon
:
Int
static
var
SearchView_submitBackground
:
Int
static
var
SearchView_suggestionRowLayout
:
Int
static
var
SearchView_voiceIcon
:
Int
static
var
Snackbar
:
IntArray
static
var
SnackbarLayout
:
IntArray
static
var
SnackbarLayout_android_maxWidth
:
Int
static
var
SnackbarLayout_elevation
:
Int
static
var
SnackbarLayout_maxActionInlineWidth
:
Int
static
var
Snackbar_snackbarButtonStyle
:
Int
static
var
Snackbar_snackbarStyle
:
Int
static
var
Spinner
:
IntArray
static
var
Spinner_android_dropDownWidth
:
Int
static
var
Spinner_android_entries
:
Int
static
var
Spinner_android_popupBackground
:
Int
static
var
Spinner_android_prompt
:
Int
static
var
Spinner_popupTheme
:
Int
static
var
StateListDrawable
:
IntArray
static
var
StateListDrawableItem
:
IntArray
static
var
StateListDrawableItem_android_drawable
:
Int
static
var
StateListDrawable_android_constantSize
:
Int
static
var
StateListDrawable_android_dither
:
Int
static
var
StateListDrawable_android_enterFadeDuration
:
Int
static
var
StateListDrawable_android_exitFadeDuration
:
Int
static
var
StateListDrawable_android_variablePadding
:
Int
static
var
StateListDrawable_android_visible
:
Int
static
var
SwitchCompat
:
IntArray
static
var
SwitchCompat_android_textOff
:
Int
static
var
SwitchCompat_android_textOn
:
Int
static
var
SwitchCompat_android_thumb
:
Int
static
var
SwitchCompat_showText
:
Int
static
var
SwitchCompat_splitTrack
:
Int
static
var
SwitchCompat_switchMinWidth
:
Int
static
var
SwitchCompat_switchPadding
:
Int
static
var
SwitchCompat_switchTextAppearance
:
Int
static
var
SwitchCompat_thumbTextPadding
:
Int
static
var
SwitchCompat_thumbTint
:
Int
static
var
SwitchCompat_thumbTintMode
:
Int
static
var
SwitchCompat_track
:
Int
static
var
SwitchCompat_trackTint
:
Int
static
var
SwitchCompat_trackTintMode
:
Int
static
var
TabItem
:
IntArray
static
var
TabItem_android_icon
:
Int
static
var
TabItem_android_layout
:
Int
static
var
TabItem_android_text
:
Int
static
var
TabLayout
:
IntArray
static
var
TabLayout_tabBackground
:
Int
static
var
TabLayout_tabContentStart
:
Int
static
var
TabLayout_tabGravity
:
Int
static
var
TabLayout_tabIconTint
:
Int
static
var
TabLayout_tabIconTintMode
:
Int
static
var
TabLayout_tabIndicator
:
Int
static
var
TabLayout_tabIndicatorAnimationDuration
:
Int
static
var
TabLayout_tabIndicatorColor
:
Int
static
var
TabLayout_tabIndicatorFullWidth
:
Int
static
var
TabLayout_tabIndicatorGravity
:
Int
static
var
TabLayout_tabIndicatorHeight
:
Int
static
var
TabLayout_tabInlineLabel
:
Int
static
var
TabLayout_tabMaxWidth
:
Int
static
var
TabLayout_tabMinWidth
:
Int
static
var
TabLayout_tabMode
:
Int
static
var
TabLayout_tabPadding
:
Int
static
var
TabLayout_tabPaddingBottom
:
Int
static
var
TabLayout_tabPaddingEnd
:
Int
static
var
TabLayout_tabPaddingStart
:
Int
static
var
TabLayout_tabPaddingTop
:
Int
static
var
TabLayout_tabRippleColor
:
Int
static
var
TabLayout_tabSelectedTextColor
:
Int
static
var
TabLayout_tabTextAppearance
:
Int
static
var
TabLayout_tabTextColor
:
Int
static
var
TabLayout_tabUnboundedRipple
:
Int
static
var
TextAppearance
:
IntArray
static
var
TextAppearance_android_fontFamily
:
Int
static
var
TextAppearance_android_shadowColor
:
Int
static
var
TextAppearance_android_shadowDx
:
Int
static
var
TextAppearance_android_shadowDy
:
Int
static
var
TextAppearance_android_shadowRadius
:
Int
static
var
TextAppearance_android_textColor
:
Int
static
var
TextAppearance_android_textColorHint
:
Int
static
var
TextAppearance_android_textColorLink
:
Int
static
var
TextAppearance_android_textSize
:
Int
static
var
TextAppearance_android_textStyle
:
Int
static
var
TextAppearance_android_typeface
:
Int
static
var
TextAppearance_fontFamily
:
Int
static
var
TextAppearance_textAllCaps
:
Int
static
var
TextInputLayout
:
IntArray
static
var
TextInputLayout_android_hint
:
Int
static
var
TextInputLayout_android_textColorHint
:
Int
static
var
TextInputLayout_boxBackgroundColor
:
Int
static
var
TextInputLayout_boxBackgroundMode
:
Int
static
var
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
var
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
var
TextInputLayout_boxStrokeColor
:
Int
static
var
TextInputLayout_boxStrokeWidth
:
Int
static
var
TextInputLayout_counterEnabled
:
Int
static
var
TextInputLayout_counterMaxLength
:
Int
static
var
TextInputLayout_counterOverflowTextAppearance
:
Int
static
var
TextInputLayout_counterTextAppearance
:
Int
static
var
TextInputLayout_errorEnabled
:
Int
static
var
TextInputLayout_errorTextAppearance
:
Int
static
var
TextInputLayout_helperText
:
Int
static
var
TextInputLayout_helperTextEnabled
:
Int
static
var
TextInputLayout_helperTextTextAppearance
:
Int
static
var
TextInputLayout_hintAnimationEnabled
:
Int
static
var
TextInputLayout_hintEnabled
:
Int
static
var
TextInputLayout_hintTextAppearance
:
Int
static
var
TextInputLayout_passwordToggleContentDescription
:
Int
static
var
TextInputLayout_passwordToggleDrawable
:
Int
static
var
TextInputLayout_passwordToggleEnabled
:
Int
static
var
TextInputLayout_passwordToggleTint
:
Int
static
var
TextInputLayout_passwordToggleTintMode
:
Int
static
var
ThemeEnforcement
:
IntArray
static
var
ThemeEnforcement_android_textAppearance
:
Int
static
var
ThemeEnforcement_enforceMaterialTheme
:
Int
static
var
ThemeEnforcement_enforceTextAppearance
:
Int
static
var
Toolbar
:
IntArray
static
var
Toolbar_android_gravity
:
Int
static
var
Toolbar_android_minHeight
:
Int
static
var
Toolbar_buttonGravity
:
Int
static
var
Toolbar_collapseContentDescription
:
Int
static
var
Toolbar_collapseIcon
:
Int
static
var
Toolbar_contentInsetEnd
:
Int
static
var
Toolbar_contentInsetEndWithActions
:
Int
static
var
Toolbar_contentInsetLeft
:
Int
static
var
Toolbar_contentInsetRight
:
Int
static
var
Toolbar_contentInsetStart
:
Int
static
var
Toolbar_contentInsetStartWithNavigation
:
Int
static
var
Toolbar_logo
:
Int
static
var
Toolbar_logoDescription
:
Int
static
var
Toolbar_maxButtonHeight
:
Int
static
var
Toolbar_navigationContentDescription
:
Int
static
var
Toolbar_navigationIcon
:
Int
static
var
Toolbar_popupTheme
:
Int
static
var
Toolbar_subtitle
:
Int
static
var
Toolbar_subtitleTextAppearance
:
Int
static
var
Toolbar_subtitleTextColor
:
Int
static
var
Toolbar_title
:
Int
static
var
Toolbar_titleMargin
:
Int
static
var
Toolbar_titleMarginBottom
:
Int
static
var
Toolbar_titleMarginEnd
:
Int
static
var
Toolbar_titleMarginStart
:
Int
static
var
Toolbar_titleMarginTop
:
Int
static
var
Toolbar_titleMargins
:
Int
static
var
Toolbar_titleTextAppearance
:
Int
static
var
Toolbar_titleTextColor
:
Int
static
var
View
:
IntArray
static
var
ViewBackgroundHelper
:
IntArray
static
var
ViewBackgroundHelper_android_background
:
Int
static
var
ViewBackgroundHelper_backgroundTint
:
Int
static
var
ViewBackgroundHelper_backgroundTintMode
:
Int
static
var
ViewStubCompat
:
IntArray
static
var
ViewStubCompat_android_id
:
Int
static
var
ViewStubCompat_android_inflatedId
:
Int
static
var
ViewStubCompat_android_layout
:
Int
static
var
View_android_focusable
:
Int
static
var
View_android_theme
:
Int
static
var
View_paddingEnd
:
Int
static
var
View_paddingStart
:
Int
static
var
View_theme
:
Int
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
var
abc_fade_in
:
Int
static
var
abc_fade_out
:
Int
static
var
abc_grow_fade_in_from_bottom
:
Int
static
var
abc_popup_enter
:
Int
static
var
abc_popup_exit
:
Int
static
var
abc_shrink_fade_out_from_bottom
:
Int
static
var
abc_slide_in_bottom
:
Int
static
var
abc_slide_in_top
:
Int
static
var
abc_slide_out_bottom
:
Int
static
var
abc_slide_out_top
:
Int
static
var
abc_tooltip_enter
:
Int
static
var
abc_tooltip_exit
:
Int
static
var
design_bottom_sheet_slide_in
:
Int
static
var
design_bottom_sheet_slide_out
:
Int
static
var
design_snackbar_in
:
Int
static
var
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
var
design_appbar_state_list_animator
:
Int
static
var
design_fab_hide_motion_spec
:
Int
static
var
design_fab_show_motion_spec
:
Int
static
var
mtrl_btn_state_list_anim
:
Int
static
var
mtrl_btn_unelevated_state_list_anim
:
Int
static
var
mtrl_chip_state_list_anim
:
Int
static
var
mtrl_fab_hide_motion_spec
:
Int
static
var
mtrl_fab_show_motion_spec
:
Int
static
var
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
var
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
var
actionBarDivider
:
Int
static
var
actionBarItemBackground
:
Int
static
var
actionBarPopupTheme
:
Int
static
var
actionBarSize
:
Int
static
var
actionBarSplitStyle
:
Int
static
var
actionBarStyle
:
Int
static
var
actionBarTabBarStyle
:
Int
static
var
actionBarTabStyle
:
Int
static
var
actionBarTabTextStyle
:
Int
static
var
actionBarTheme
:
Int
static
var
actionBarWidgetTheme
:
Int
static
var
actionButtonStyle
:
Int
static
var
actionDropDownStyle
:
Int
static
var
actionLayout
:
Int
static
var
actionMenuTextAppearance
:
Int
static
var
actionMenuTextColor
:
Int
static
var
actionModeBackground
:
Int
static
var
actionModeCloseButtonStyle
:
Int
static
var
actionModeCloseDrawable
:
Int
static
var
actionModeCopyDrawable
:
Int
static
var
actionModeCutDrawable
:
Int
static
var
actionModeFindDrawable
:
Int
static
var
actionModePasteDrawable
:
Int
static
var
actionModePopupWindowStyle
:
Int
static
var
actionModeSelectAllDrawable
:
Int
static
var
actionModeShareDrawable
:
Int
static
var
actionModeSplitBackground
:
Int
static
var
actionModeStyle
:
Int
static
var
actionModeWebSearchDrawable
:
Int
static
var
actionOverflowButtonStyle
:
Int
static
var
actionOverflowMenuStyle
:
Int
static
var
actionProviderClass
:
Int
static
var
actionViewClass
:
Int
static
var
activityChooserViewStyle
:
Int
static
var
alertDialogButtonGroupStyle
:
Int
static
var
alertDialogCenterButtons
:
Int
static
var
alertDialogStyle
:
Int
static
var
alertDialogTheme
:
Int
static
var
allowStacking
:
Int
static
var
alpha
:
Int
static
var
alphabeticModifiers
:
Int
static
var
arrowHeadLength
:
Int
static
var
arrowShaftLength
:
Int
static
var
autoCompleteTextViewStyle
:
Int
static
var
autoSizeMaxTextSize
:
Int
static
var
autoSizeMinTextSize
:
Int
static
var
autoSizePresetSizes
:
Int
static
var
autoSizeStepGranularity
:
Int
static
var
autoSizeTextType
:
Int
static
var
background
:
Int
static
var
backgroundSplit
:
Int
static
var
backgroundStacked
:
Int
static
var
backgroundTint
:
Int
static
var
backgroundTintMode
:
Int
static
var
barLength
:
Int
static
var
barrierAllowsGoneWidgets
:
Int
static
var
barrierDirection
:
Int
static
var
behavior_autoHide
:
Int
static
var
behavior_fitToContents
:
Int
static
var
behavior_hideable
:
Int
static
var
behavior_overlapTop
:
Int
static
var
behavior_peekHeight
:
Int
static
var
behavior_skipCollapsed
:
Int
static
var
borderWidth
:
Int
static
var
borderlessButtonStyle
:
Int
static
var
bottomAppBarStyle
:
Int
static
var
bottomNavigationStyle
:
Int
static
var
bottomSheetDialogTheme
:
Int
static
var
bottomSheetStyle
:
Int
static
var
boxBackgroundColor
:
Int
static
var
boxBackgroundMode
:
Int
static
var
boxCollapsedPaddingTop
:
Int
static
var
boxCornerRadiusBottomEnd
:
Int
static
var
boxCornerRadiusBottomStart
:
Int
static
var
boxCornerRadiusTopEnd
:
Int
static
var
boxCornerRadiusTopStart
:
Int
static
var
boxStrokeColor
:
Int
static
var
boxStrokeWidth
:
Int
static
var
buttonBarButtonStyle
:
Int
static
var
buttonBarNegativeButtonStyle
:
Int
static
var
buttonBarNeutralButtonStyle
:
Int
static
var
buttonBarPositiveButtonStyle
:
Int
static
var
buttonBarStyle
:
Int
static
var
buttonGravity
:
Int
static
var
buttonIconDimen
:
Int
static
var
buttonPanelSideLayout
:
Int
static
var
buttonStyle
:
Int
static
var
buttonStyleSmall
:
Int
static
var
buttonTint
:
Int
static
var
buttonTintMode
:
Int
static
var
cardBackgroundColor
:
Int
static
var
cardCornerRadius
:
Int
static
var
cardElevation
:
Int
static
var
cardMaxElevation
:
Int
static
var
cardPreventCornerOverlap
:
Int
static
var
cardUseCompatPadding
:
Int
static
var
cardViewStyle
:
Int
static
var
chainUseRtl
:
Int
static
var
checkboxStyle
:
Int
static
var
checkedChip
:
Int
static
var
checkedIcon
:
Int
static
var
checkedIconEnabled
:
Int
static
var
checkedIconVisible
:
Int
static
var
checkedTextViewStyle
:
Int
static
var
chipBackgroundColor
:
Int
static
var
chipCornerRadius
:
Int
static
var
chipEndPadding
:
Int
static
var
chipGroupStyle
:
Int
static
var
chipIcon
:
Int
static
var
chipIconEnabled
:
Int
static
var
chipIconSize
:
Int
static
var
chipIconTint
:
Int
static
var
chipIconVisible
:
Int
static
var
chipMinHeight
:
Int
static
var
chipSpacing
:
Int
static
var
chipSpacingHorizontal
:
Int
static
var
chipSpacingVertical
:
Int
static
var
chipStandaloneStyle
:
Int
static
var
chipStartPadding
:
Int
static
var
chipStrokeColor
:
Int
static
var
chipStrokeWidth
:
Int
static
var
chipStyle
:
Int
static
var
closeIcon
:
Int
static
var
closeIconEnabled
:
Int
static
var
closeIconEndPadding
:
Int
static
var
closeIconSize
:
Int
static
var
closeIconStartPadding
:
Int
static
var
closeIconTint
:
Int
static
var
closeIconVisible
:
Int
static
var
closeItemLayout
:
Int
static
var
collapseContentDescription
:
Int
static
var
collapseIcon
:
Int
static
var
collapsedTitleGravity
:
Int
static
var
collapsedTitleTextAppearance
:
Int
static
var
color
:
Int
static
var
colorAccent
:
Int
static
var
colorBackgroundFloating
:
Int
static
var
colorButtonNormal
:
Int
static
var
colorControlActivated
:
Int
static
var
colorControlHighlight
:
Int
static
var
colorControlNormal
:
Int
static
var
colorError
:
Int
static
var
colorPrimary
:
Int
static
var
colorPrimaryDark
:
Int
static
var
colorSecondary
:
Int
static
var
colorSwitchThumbNormal
:
Int
static
var
commitIcon
:
Int
static
var
constraintSet
:
Int
static
var
constraint_referenced_ids
:
Int
static
var
content
:
Int
static
var
contentDescription
:
Int
static
var
contentInsetEnd
:
Int
static
var
contentInsetEndWithActions
:
Int
static
var
contentInsetLeft
:
Int
static
var
contentInsetRight
:
Int
static
var
contentInsetStart
:
Int
static
var
contentInsetStartWithNavigation
:
Int
static
var
contentPadding
:
Int
static
var
contentPaddingBottom
:
Int
static
var
contentPaddingLeft
:
Int
static
var
contentPaddingRight
:
Int
static
var
contentPaddingTop
:
Int
static
var
contentScrim
:
Int
static
var
controlBackground
:
Int
static
var
coordinatorLayoutStyle
:
Int
static
var
cornerRadius
:
Int
static
var
counterEnabled
:
Int
static
var
counterMaxLength
:
Int
static
var
counterOverflowTextAppearance
:
Int
static
var
counterTextAppearance
:
Int
static
var
customNavigationLayout
:
Int
static
var
defaultQueryHint
:
Int
static
var
dialogCornerRadius
:
Int
static
var
dialogPreferredPadding
:
Int
static
var
dialogTheme
:
Int
static
var
displayOptions
:
Int
static
var
divider
:
Int
static
var
dividerHorizontal
:
Int
static
var
dividerPadding
:
Int
static
var
dividerVertical
:
Int
static
var
drawableSize
:
Int
static
var
drawerArrowStyle
:
Int
static
var
dropDownListViewStyle
:
Int
static
var
dropdownListPreferredItemHeight
:
Int
static
var
editTextBackground
:
Int
static
var
editTextColor
:
Int
static
var
editTextStyle
:
Int
static
var
elevation
:
Int
static
var
emptyVisibility
:
Int
static
var
enforceMaterialTheme
:
Int
static
var
enforceTextAppearance
:
Int
static
var
errorEnabled
:
Int
static
var
errorTextAppearance
:
Int
static
var
expandActivityOverflowButtonDrawable
:
Int
static
var
expanded
:
Int
static
var
expandedTitleGravity
:
Int
static
var
expandedTitleMargin
:
Int
static
var
expandedTitleMarginBottom
:
Int
static
var
expandedTitleMarginEnd
:
Int
static
var
expandedTitleMarginStart
:
Int
static
var
expandedTitleMarginTop
:
Int
static
var
expandedTitleTextAppearance
:
Int
static
var
fabAlignmentMode
:
Int
static
var
fabCradleMargin
:
Int
static
var
fabCradleRoundedCornerRadius
:
Int
static
var
fabCradleVerticalOffset
:
Int
static
var
fabCustomSize
:
Int
static
var
fabSize
:
Int
static
var
fastScrollEnabled
:
Int
static
var
fastScrollHorizontalThumbDrawable
:
Int
static
var
fastScrollHorizontalTrackDrawable
:
Int
static
var
fastScrollVerticalThumbDrawable
:
Int
static
var
fastScrollVerticalTrackDrawable
:
Int
static
var
firstBaselineToTopHeight
:
Int
static
var
floatingActionButtonStyle
:
Int
static
var
font
:
Int
static
var
fontFamily
:
Int
static
var
fontProviderAuthority
:
Int
static
var
fontProviderCerts
:
Int
static
var
fontProviderFetchStrategy
:
Int
static
var
fontProviderFetchTimeout
:
Int
static
var
fontProviderPackage
:
Int
static
var
fontProviderQuery
:
Int
static
var
fontStyle
:
Int
static
var
fontVariationSettings
:
Int
static
var
fontWeight
:
Int
static
var
foregroundInsidePadding
:
Int
static
var
gapBetweenBars
:
Int
static
var
goIcon
:
Int
static
var
headerLayout
:
Int
static
var
height
:
Int
static
var
helperText
:
Int
static
var
helperTextEnabled
:
Int
static
var
helperTextTextAppearance
:
Int
static
var
hideMotionSpec
:
Int
static
var
hideOnContentScroll
:
Int
static
var
hideOnScroll
:
Int
static
var
hintAnimationEnabled
:
Int
static
var
hintEnabled
:
Int
static
var
hintTextAppearance
:
Int
static
var
homeAsUpIndicator
:
Int
static
var
homeLayout
:
Int
static
var
hoveredFocusedTranslationZ
:
Int
static
var
icon
:
Int
static
var
iconEndPadding
:
Int
static
var
iconGravity
:
Int
static
var
iconPadding
:
Int
static
var
iconSize
:
Int
static
var
iconStartPadding
:
Int
static
var
iconTint
:
Int
static
var
iconTintMode
:
Int
static
var
iconifiedByDefault
:
Int
static
var
imageButtonStyle
:
Int
static
var
indeterminateProgressStyle
:
Int
static
var
initialActivityCount
:
Int
static
var
insetForeground
:
Int
static
var
isLightTheme
:
Int
static
var
itemBackground
:
Int
static
var
itemHorizontalPadding
:
Int
static
var
itemHorizontalTranslationEnabled
:
Int
static
var
itemIconPadding
:
Int
static
var
itemIconSize
:
Int
static
var
itemIconTint
:
Int
static
var
itemPadding
:
Int
static
var
itemSpacing
:
Int
static
var
itemTextAppearance
:
Int
static
var
itemTextAppearanceActive
:
Int
static
var
itemTextAppearanceInactive
:
Int
static
var
itemTextColor
:
Int
static
var
keylines
:
Int
static
var
labelVisibilityMode
:
Int
static
var
lastBaselineToBottomHeight
:
Int
static
var
layout
:
Int
static
var
layoutManager
:
Int
static
var
layout_anchor
:
Int
static
var
layout_anchorGravity
:
Int
static
var
layout_behavior
:
Int
static
var
layout_collapseMode
:
Int
static
var
layout_collapseParallaxMultiplier
:
Int
static
var
layout_constrainedHeight
:
Int
static
var
layout_constrainedWidth
:
Int
static
var
layout_constraintBaseline_creator
:
Int
static
var
layout_constraintBaseline_toBaselineOf
:
Int
static
var
layout_constraintBottom_creator
:
Int
static
var
layout_constraintBottom_toBottomOf
:
Int
static
var
layout_constraintBottom_toTopOf
:
Int
static
var
layout_constraintCircle
:
Int
static
var
layout_constraintCircleAngle
:
Int
static
var
layout_constraintCircleRadius
:
Int
static
var
layout_constraintDimensionRatio
:
Int
static
var
layout_constraintEnd_toEndOf
:
Int
static
var
layout_constraintEnd_toStartOf
:
Int
static
var
layout_constraintGuide_begin
:
Int
static
var
layout_constraintGuide_end
:
Int
static
var
layout_constraintGuide_percent
:
Int
static
var
layout_constraintHeight_default
:
Int
static
var
layout_constraintHeight_max
:
Int
static
var
layout_constraintHeight_min
:
Int
static
var
layout_constraintHeight_percent
:
Int
static
var
layout_constraintHorizontal_bias
:
Int
static
var
layout_constraintHorizontal_chainStyle
:
Int
static
var
layout_constraintHorizontal_weight
:
Int
static
var
layout_constraintLeft_creator
:
Int
static
var
layout_constraintLeft_toLeftOf
:
Int
static
var
layout_constraintLeft_toRightOf
:
Int
static
var
layout_constraintRight_creator
:
Int
static
var
layout_constraintRight_toLeftOf
:
Int
static
var
layout_constraintRight_toRightOf
:
Int
static
var
layout_constraintStart_toEndOf
:
Int
static
var
layout_constraintStart_toStartOf
:
Int
static
var
layout_constraintTop_creator
:
Int
static
var
layout_constraintTop_toBottomOf
:
Int
static
var
layout_constraintTop_toTopOf
:
Int
static
var
layout_constraintVertical_bias
:
Int
static
var
layout_constraintVertical_chainStyle
:
Int
static
var
layout_constraintVertical_weight
:
Int
static
var
layout_constraintWidth_default
:
Int
static
var
layout_constraintWidth_max
:
Int
static
var
layout_constraintWidth_min
:
Int
static
var
layout_constraintWidth_percent
:
Int
static
var
layout_dodgeInsetEdges
:
Int
static
var
layout_editor_absoluteX
:
Int
static
var
layout_editor_absoluteY
:
Int
static
var
layout_goneMarginBottom
:
Int
static
var
layout_goneMarginEnd
:
Int
static
var
layout_goneMarginLeft
:
Int
static
var
layout_goneMarginRight
:
Int
static
var
layout_goneMarginStart
:
Int
static
var
layout_goneMarginTop
:
Int
static
var
layout_insetEdge
:
Int
static
var
layout_keyline
:
Int
static
var
layout_optimizationLevel
:
Int
static
var
layout_scrollFlags
:
Int
static
var
layout_scrollInterpolator
:
Int
static
var
liftOnScroll
:
Int
static
var
lineHeight
:
Int
static
var
lineSpacing
:
Int
static
var
listChoiceBackgroundIndicator
:
Int
static
var
listDividerAlertDialog
:
Int
static
var
listItemLayout
:
Int
static
var
listLayout
:
Int
static
var
listMenuViewStyle
:
Int
static
var
listPopupWindowStyle
:
Int
static
var
listPreferredItemHeight
:
Int
static
var
listPreferredItemHeightLarge
:
Int
static
var
listPreferredItemHeightSmall
:
Int
static
var
listPreferredItemPaddingLeft
:
Int
static
var
listPreferredItemPaddingRight
:
Int
static
var
logo
:
Int
static
var
logoDescription
:
Int
static
var
materialButtonStyle
:
Int
static
var
materialCardViewStyle
:
Int
static
var
maxActionInlineWidth
:
Int
static
var
maxButtonHeight
:
Int
static
var
maxImageSize
:
Int
static
var
measureWithLargestChild
:
Int
static
var
menu
:
Int
static
var
multiChoiceItemLayout
:
Int
static
var
navigationContentDescription
:
Int
static
var
navigationIcon
:
Int
static
var
navigationMode
:
Int
static
var
navigationViewStyle
:
Int
static
var
numericModifiers
:
Int
static
var
overlapAnchor
:
Int
static
var
paddingBottomNoButtons
:
Int
static
var
paddingEnd
:
Int
static
var
paddingStart
:
Int
static
var
paddingTopNoTitle
:
Int
static
var
panelBackground
:
Int
static
var
panelMenuListTheme
:
Int
static
var
panelMenuListWidth
:
Int
static
var
passwordToggleContentDescription
:
Int
static
var
passwordToggleDrawable
:
Int
static
var
passwordToggleEnabled
:
Int
static
var
passwordToggleTint
:
Int
static
var
passwordToggleTintMode
:
Int
static
var
popupMenuStyle
:
Int
static
var
popupTheme
:
Int
static
var
popupWindowStyle
:
Int
static
var
preserveIconSpacing
:
Int
static
var
pressedTranslationZ
:
Int
static
var
progressBarPadding
:
Int
static
var
progressBarStyle
:
Int
static
var
queryBackground
:
Int
static
var
queryHint
:
Int
static
var
radioButtonStyle
:
Int
static
var
ratingBarStyle
:
Int
static
var
ratingBarStyleIndicator
:
Int
static
var
ratingBarStyleSmall
:
Int
static
var
reverseLayout
:
Int
static
var
rippleColor
:
Int
static
var
scrimAnimationDuration
:
Int
static
var
scrimBackground
:
Int
static
var
scrimVisibleHeightTrigger
:
Int
static
var
searchHintIcon
:
Int
static
var
searchIcon
:
Int
static
var
searchViewStyle
:
Int
static
var
seekBarStyle
:
Int
static
var
selectableItemBackground
:
Int
static
var
selectableItemBackgroundBorderless
:
Int
static
var
showAsAction
:
Int
static
var
showDividers
:
Int
static
var
showMotionSpec
:
Int
static
var
showText
:
Int
static
var
showTitle
:
Int
static
var
singleChoiceItemLayout
:
Int
static
var
singleLine
:
Int
static
var
singleSelection
:
Int
static
var
snackbarButtonStyle
:
Int
static
var
snackbarStyle
:
Int
static
var
spanCount
:
Int
static
var
spinBars
:
Int
static
var
spinnerDropDownItemStyle
:
Int
static
var
spinnerStyle
:
Int
static
var
splitTrack
:
Int
static
var
srcCompat
:
Int
static
var
stackFromEnd
:
Int
static
var
state_above_anchor
:
Int
static
var
state_collapsed
:
Int
static
var
state_collapsible
:
Int
static
var
state_liftable
:
Int
static
var
state_lifted
:
Int
static
var
statusBarBackground
:
Int
static
var
statusBarScrim
:
Int
static
var
strokeColor
:
Int
static
var
strokeWidth
:
Int
static
var
subMenuArrow
:
Int
static
var
submitBackground
:
Int
static
var
subtitle
:
Int
static
var
subtitleTextAppearance
:
Int
static
var
subtitleTextColor
:
Int
static
var
subtitleTextStyle
:
Int
static
var
suggestionRowLayout
:
Int
static
var
switchMinWidth
:
Int
static
var
switchPadding
:
Int
static
var
switchStyle
:
Int
static
var
switchTextAppearance
:
Int
static
var
tabBackground
:
Int
static
var
tabContentStart
:
Int
static
var
tabGravity
:
Int
static
var
tabIconTint
:
Int
static
var
tabIconTintMode
:
Int
static
var
tabIndicator
:
Int
static
var
tabIndicatorAnimationDuration
:
Int
static
var
tabIndicatorColor
:
Int
static
var
tabIndicatorFullWidth
:
Int
static
var
tabIndicatorGravity
:
Int
static
var
tabIndicatorHeight
:
Int
static
var
tabInlineLabel
:
Int
static
var
tabMaxWidth
:
Int
static
var
tabMinWidth
:
Int
static
var
tabMode
:
Int
static
var
tabPadding
:
Int
static
var
tabPaddingBottom
:
Int
static
var
tabPaddingEnd
:
Int
static
var
tabPaddingStart
:
Int
static
var
tabPaddingTop
:
Int
static
var
tabRippleColor
:
Int
static
var
tabSelectedTextColor
:
Int
static
var
tabStyle
:
Int
static
var
tabTextAppearance
:
Int
static
var
tabTextColor
:
Int
static
var
tabUnboundedRipple
:
Int
static
var
textAllCaps
:
Int
static
var
textAppearanceBody1
:
Int
static
var
textAppearanceBody2
:
Int
static
var
textAppearanceButton
:
Int
static
var
textAppearanceCaption
:
Int
static
var
textAppearanceHeadline1
:
Int
static
var
textAppearanceHeadline2
:
Int
static
var
textAppearanceHeadline3
:
Int
static
var
textAppearanceHeadline4
:
Int
static
var
textAppearanceHeadline5
:
Int
static
var
textAppearanceHeadline6
:
Int
static
var
textAppearanceLargePopupMenu
:
Int
static
var
textAppearanceListItem
:
Int
static
var
textAppearanceListItemSecondary
:
Int
static
var
textAppearanceListItemSmall
:
Int
static
var
textAppearanceOverline
:
Int
static
var
textAppearancePopupMenuHeader
:
Int
static
var
textAppearanceSearchResultSubtitle
:
Int
static
var
textAppearanceSearchResultTitle
:
Int
static
var
textAppearanceSmallPopupMenu
:
Int
static
var
textAppearanceSubtitle1
:
Int
static
var
textAppearanceSubtitle2
:
Int
static
var
textColorAlertDialogListItem
:
Int
static
var
textColorSearchUrl
:
Int
static
var
textEndPadding
:
Int
static
var
textInputStyle
:
Int
static
var
textStartPadding
:
Int
static
var
theme
:
Int
static
var
thickness
:
Int
static
var
thumbTextPadding
:
Int
static
var
thumbTint
:
Int
static
var
thumbTintMode
:
Int
static
var
tickMark
:
Int
static
var
tickMarkTint
:
Int
static
var
tickMarkTintMode
:
Int
static
var
tint
:
Int
static
var
tintMode
:
Int
static
var
title
:
Int
static
var
titleEnabled
:
Int
static
var
titleMargin
:
Int
static
var
titleMarginBottom
:
Int
static
var
titleMarginEnd
:
Int
static
var
titleMarginStart
:
Int
static
var
titleMarginTop
:
Int
static
var
titleMargins
:
Int
static
var
titleTextAppearance
:
Int
static
var
titleTextColor
:
Int
static
var
titleTextStyle
:
Int
static
var
toolbarId
:
Int
static
var
toolbarNavigationButtonStyle
:
Int
static
var
toolbarStyle
:
Int
static
var
tooltipForegroundColor
:
Int
static
var
tooltipFrameBackground
:
Int
static
var
tooltipText
:
Int
static
var
track
:
Int
static
var
trackTint
:
Int
static
var
trackTintMode
:
Int
static
var
ttcIndex
:
Int
static
var
useCompatPadding
:
Int
static
var
viewInflaterClass
:
Int
static
var
voiceIcon
:
Int
static
var
windowActionBar
:
Int
static
var
windowActionBarOverlay
:
Int
static
var
windowActionModeOverlay
:
Int
static
var
windowFixedHeightMajor
:
Int
static
var
windowFixedHeightMinor
:
Int
static
var
windowFixedWidthMajor
:
Int
static
var
windowFixedWidthMinor
:
Int
static
var
windowMinWidthMajor
:
Int
static
var
windowMinWidthMinor
:
Int
static
var
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
var
abc_action_bar_embed_tabs
:
Int
static
var
abc_allow_stacked_button_bar
:
Int
static
var
abc_config_actionMenuItemAllCaps
:
Int
static
var
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
var
abc_background_cache_hint_selector_material_dark
:
Int
static
var
abc_background_cache_hint_selector_material_light
:
Int
static
var
abc_btn_colored_borderless_text_material
:
Int
static
var
abc_btn_colored_text_material
:
Int
static
var
abc_color_highlight_material
:
Int
static
var
abc_hint_foreground_material_dark
:
Int
static
var
abc_hint_foreground_material_light
:
Int
static
var
abc_input_method_navigation_guard
:
Int
static
var
abc_primary_text_disable_only_material_dark
:
Int
static
var
abc_primary_text_disable_only_material_light
:
Int
static
var
abc_primary_text_material_dark
:
Int
static
var
abc_primary_text_material_light
:
Int
static
var
abc_search_url_text
:
Int
static
var
abc_search_url_text_normal
:
Int
static
var
abc_search_url_text_pressed
:
Int
static
var
abc_search_url_text_selected
:
Int
static
var
abc_secondary_text_material_dark
:
Int
static
var
abc_secondary_text_material_light
:
Int
static
var
abc_tint_btn_checkable
:
Int
static
var
abc_tint_default
:
Int
static
var
abc_tint_edittext
:
Int
static
var
abc_tint_seek_thumb
:
Int
static
var
abc_tint_spinner
:
Int
static
var
abc_tint_switch_track
:
Int
static
var
accent_material_dark
:
Int
static
var
accent_material_light
:
Int
static
var
background_floating_material_dark
:
Int
static
var
background_floating_material_light
:
Int
static
var
background_material_dark
:
Int
static
var
background_material_light
:
Int
static
var
bright_foreground_disabled_material_dark
:
Int
static
var
bright_foreground_disabled_material_light
:
Int
static
var
bright_foreground_inverse_material_dark
:
Int
static
var
bright_foreground_inverse_material_light
:
Int
static
var
bright_foreground_material_dark
:
Int
static
var
bright_foreground_material_light
:
Int
static
var
button_material_dark
:
Int
static
var
button_material_light
:
Int
static
var
cardview_dark_background
:
Int
static
var
cardview_light_background
:
Int
static
var
cardview_shadow_end_color
:
Int
static
var
cardview_shadow_start_color
:
Int
static
var
design_bottom_navigation_shadow_color
:
Int
static
var
design_default_color_primary
:
Int
static
var
design_default_color_primary_dark
:
Int
static
var
design_error
:
Int
static
var
design_fab_shadow_end_color
:
Int
static
var
design_fab_shadow_mid_color
:
Int
static
var
design_fab_shadow_start_color
:
Int
static
var
design_fab_stroke_end_inner_color
:
Int
static
var
design_fab_stroke_end_outer_color
:
Int
static
var
design_fab_stroke_top_inner_color
:
Int
static
var
design_fab_stroke_top_outer_color
:
Int
static
var
design_snackbar_background_color
:
Int
static
var
design_tint_password_toggle
:
Int
static
var
dim_foreground_disabled_material_dark
:
Int
static
var
dim_foreground_disabled_material_light
:
Int
static
var
dim_foreground_material_dark
:
Int
static
var
dim_foreground_material_light
:
Int
static
var
errorForegroundColor
:
Int
static
var
error_color_material_dark
:
Int
static
var
error_color_material_light
:
Int
static
var
floatingActiveLabelColor
:
Int
static
var
floatingLabelColor
:
Int
static
var
foreground_material_dark
:
Int
static
var
foreground_material_light
:
Int
static
var
highlighted_text_material_dark
:
Int
static
var
highlighted_text_material_light
:
Int
static
var
hintColor
:
Int
static
var
material_blue_grey_800
:
Int
static
var
material_blue_grey_900
:
Int
static
var
material_blue_grey_950
:
Int
static
var
material_deep_teal_200
:
Int
static
var
material_deep_teal_500
:
Int
static
var
material_grey_100
:
Int
static
var
material_grey_300
:
Int
static
var
material_grey_50
:
Int
static
var
material_grey_600
:
Int
static
var
material_grey_800
:
Int
static
var
material_grey_850
:
Int
static
var
material_grey_900
:
Int
static
var
mtrl_bottom_nav_colored_item_tint
:
Int
static
var
mtrl_bottom_nav_item_tint
:
Int
static
var
mtrl_btn_bg_color_disabled
:
Int
static
var
mtrl_btn_bg_color_selector
:
Int
static
var
mtrl_btn_ripple_color
:
Int
static
var
mtrl_btn_stroke_color_selector
:
Int
static
var
mtrl_btn_text_btn_ripple_color
:
Int
static
var
mtrl_btn_text_color_disabled
:
Int
static
var
mtrl_btn_text_color_selector
:
Int
static
var
mtrl_btn_transparent_bg_color
:
Int
static
var
mtrl_chip_background_color
:
Int
static
var
mtrl_chip_close_icon_tint
:
Int
static
var
mtrl_chip_ripple_color
:
Int
static
var
mtrl_chip_text_color
:
Int
static
var
mtrl_fab_ripple_color
:
Int
static
var
mtrl_scrim_color
:
Int
static
var
mtrl_tabs_colored_ripple_color
:
Int
static
var
mtrl_tabs_icon_color_selector
:
Int
static
var
mtrl_tabs_icon_color_selector_colored
:
Int
static
var
mtrl_tabs_legacy_text_color_selector
:
Int
static
var
mtrl_tabs_ripple_color
:
Int
static
var
mtrl_text_btn_text_color_selector
:
Int
static
var
mtrl_textinput_default_box_stroke_color
:
Int
static
var
mtrl_textinput_disabled_color
:
Int
static
var
mtrl_textinput_filled_box_default_background_color
:
Int
static
var
mtrl_textinput_hovered_box_stroke_color
:
Int
static
var
notification_action_color_filter
:
Int
static
var
notification_icon_bg_color
:
Int
static
var
primaryActiveEditTextColor
:
Int
static
var
primaryEditTextColor
:
Int
static
var
primary_dark_material_dark
:
Int
static
var
primary_dark_material_light
:
Int
static
var
primary_material_dark
:
Int
static
var
primary_material_light
:
Int
static
var
primary_text_default_material_dark
:
Int
static
var
primary_text_default_material_light
:
Int
static
var
primary_text_disabled_material_dark
:
Int
static
var
primary_text_disabled_material_light
:
Int
static
var
ripple_material_dark
:
Int
static
var
ripple_material_light
:
Int
static
var
secondary_text_default_material_dark
:
Int
static
var
secondary_text_default_material_light
:
Int
static
var
secondary_text_disabled_material_dark
:
Int
static
var
secondary_text_disabled_material_light
:
Int
static
var
switch_thumb_disabled_material_dark
:
Int
static
var
switch_thumb_disabled_material_light
:
Int
static
var
switch_thumb_material_dark
:
Int
static
var
switch_thumb_material_light
:
Int
static
var
switch_thumb_normal_material_dark
:
Int
static
var
switch_thumb_normal_material_light
:
Int
static
var
tooltip_background_dark
:
Int
static
var
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
var
abc_action_bar_content_inset_material
:
Int
static
var
abc_action_bar_content_inset_with_nav
:
Int
static
var
abc_action_bar_default_height_material
:
Int
static
var
abc_action_bar_default_padding_end_material
:
Int
static
var
abc_action_bar_default_padding_start_material
:
Int
static
var
abc_action_bar_elevation_material
:
Int
static
var
abc_action_bar_icon_vertical_padding_material
:
Int
static
var
abc_action_bar_overflow_padding_end_material
:
Int
static
var
abc_action_bar_overflow_padding_start_material
:
Int
static
var
abc_action_bar_stacked_max_height
:
Int
static
var
abc_action_bar_stacked_tab_max_width
:
Int
static
var
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
var
abc_action_bar_subtitle_top_margin_material
:
Int
static
var
abc_action_button_min_height_material
:
Int
static
var
abc_action_button_min_width_material
:
Int
static
var
abc_action_button_min_width_overflow_material
:
Int
static
var
abc_alert_dialog_button_bar_height
:
Int
static
var
abc_alert_dialog_button_dimen
:
Int
static
var
abc_button_inset_horizontal_material
:
Int
static
var
abc_button_inset_vertical_material
:
Int
static
var
abc_button_padding_horizontal_material
:
Int
static
var
abc_button_padding_vertical_material
:
Int
static
var
abc_cascading_menus_min_smallest_width
:
Int
static
var
abc_config_prefDialogWidth
:
Int
static
var
abc_control_corner_material
:
Int
static
var
abc_control_inset_material
:
Int
static
var
abc_control_padding_material
:
Int
static
var
abc_dialog_corner_radius_material
:
Int
static
var
abc_dialog_fixed_height_major
:
Int
static
var
abc_dialog_fixed_height_minor
:
Int
static
var
abc_dialog_fixed_width_major
:
Int
static
var
abc_dialog_fixed_width_minor
:
Int
static
var
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
var
abc_dialog_list_padding_top_no_title
:
Int
static
var
abc_dialog_min_width_major
:
Int
static
var
abc_dialog_min_width_minor
:
Int
static
var
abc_dialog_padding_material
:
Int
static
var
abc_dialog_padding_top_material
:
Int
static
var
abc_dialog_title_divider_material
:
Int
static
var
abc_disabled_alpha_material_dark
:
Int
static
var
abc_disabled_alpha_material_light
:
Int
static
var
abc_dropdownitem_icon_width
:
Int
static
var
abc_dropdownitem_text_padding_left
:
Int
static
var
abc_dropdownitem_text_padding_right
:
Int
static
var
abc_edit_text_inset_bottom_material
:
Int
static
var
abc_edit_text_inset_horizontal_material
:
Int
static
var
abc_edit_text_inset_top_material
:
Int
static
var
abc_floating_window_z
:
Int
static
var
abc_list_item_padding_horizontal_material
:
Int
static
var
abc_panel_menu_list_width
:
Int
static
var
abc_progress_bar_height_material
:
Int
static
var
abc_search_view_preferred_height
:
Int
static
var
abc_search_view_preferred_width
:
Int
static
var
abc_seekbar_track_background_height_material
:
Int
static
var
abc_seekbar_track_progress_height_material
:
Int
static
var
abc_select_dialog_padding_start_material
:
Int
static
var
abc_switch_padding
:
Int
static
var
abc_text_size_body_1_material
:
Int
static
var
abc_text_size_body_2_material
:
Int
static
var
abc_text_size_button_material
:
Int
static
var
abc_text_size_caption_material
:
Int
static
var
abc_text_size_display_1_material
:
Int
static
var
abc_text_size_display_2_material
:
Int
static
var
abc_text_size_display_3_material
:
Int
static
var
abc_text_size_display_4_material
:
Int
static
var
abc_text_size_headline_material
:
Int
static
var
abc_text_size_large_material
:
Int
static
var
abc_text_size_medium_material
:
Int
static
var
abc_text_size_menu_header_material
:
Int
static
var
abc_text_size_menu_material
:
Int
static
var
abc_text_size_small_material
:
Int
static
var
abc_text_size_subhead_material
:
Int
static
var
abc_text_size_subtitle_material_toolbar
:
Int
static
var
abc_text_size_title_material
:
Int
static
var
abc_text_size_title_material_toolbar
:
Int
static
var
add_card_expiry_middle_margin
:
Int
static
var
cardview_compat_inset_shadow
:
Int
static
var
cardview_default_elevation
:
Int
static
var
cardview_default_radius
:
Int
static
var
compat_button_inset_horizontal_material
:
Int
static
var
compat_button_inset_vertical_material
:
Int
static
var
compat_button_padding_horizontal_material
:
Int
static
var
compat_button_padding_vertical_material
:
Int
static
var
compat_control_corner_material
:
Int
static
var
compat_notification_large_icon_max_height
:
Int
static
var
compat_notification_large_icon_max_width
:
Int
static
var
design_appbar_elevation
:
Int
static
var
design_bottom_navigation_active_item_max_width
:
Int
static
var
design_bottom_navigation_active_item_min_width
:
Int
static
var
design_bottom_navigation_active_text_size
:
Int
static
var
design_bottom_navigation_elevation
:
Int
static
var
design_bottom_navigation_height
:
Int
static
var
design_bottom_navigation_icon_size
:
Int
static
var
design_bottom_navigation_item_max_width
:
Int
static
var
design_bottom_navigation_item_min_width
:
Int
static
var
design_bottom_navigation_margin
:
Int
static
var
design_bottom_navigation_shadow_height
:
Int
static
var
design_bottom_navigation_text_size
:
Int
static
var
design_bottom_sheet_modal_elevation
:
Int
static
var
design_bottom_sheet_peek_height_min
:
Int
static
var
design_fab_border_width
:
Int
static
var
design_fab_elevation
:
Int
static
var
design_fab_image_size
:
Int
static
var
design_fab_size_mini
:
Int
static
var
design_fab_size_normal
:
Int
static
var
design_fab_translation_z_hovered_focused
:
Int
static
var
design_fab_translation_z_pressed
:
Int
static
var
design_navigation_elevation
:
Int
static
var
design_navigation_icon_padding
:
Int
static
var
design_navigation_icon_size
:
Int
static
var
design_navigation_item_horizontal_padding
:
Int
static
var
design_navigation_item_icon_padding
:
Int
static
var
design_navigation_max_width
:
Int
static
var
design_navigation_padding_bottom
:
Int
static
var
design_navigation_separator_vertical_padding
:
Int
static
var
design_snackbar_action_inline_max_width
:
Int
static
var
design_snackbar_background_corner_radius
:
Int
static
var
design_snackbar_elevation
:
Int
static
var
design_snackbar_extra_spacing_horizontal
:
Int
static
var
design_snackbar_max_width
:
Int
static
var
design_snackbar_min_width
:
Int
static
var
design_snackbar_padding_horizontal
:
Int
static
var
design_snackbar_padding_vertical
:
Int
static
var
design_snackbar_padding_vertical_2lines
:
Int
static
var
design_snackbar_text_size
:
Int
static
var
design_tab_max_width
:
Int
static
var
design_tab_scrollable_min_width
:
Int
static
var
design_tab_text_size
:
Int
static
var
design_tab_text_size_2line
:
Int
static
var
design_textinput_caption_translate_y
:
Int
static
var
disabled_alpha_material_dark
:
Int
static
var
disabled_alpha_material_light
:
Int
static
var
fab_margin
:
Int
static
var
fastscroll_default_thickness
:
Int
static
var
fastscroll_margin
:
Int
static
var
fastscroll_minimum_range
:
Int
static
var
highlight_alpha_material_colored
:
Int
static
var
highlight_alpha_material_dark
:
Int
static
var
highlight_alpha_material_light
:
Int
static
var
hint_alpha_material_dark
:
Int
static
var
hint_alpha_material_light
:
Int
static
var
hint_pressed_alpha_material_dark
:
Int
static
var
hint_pressed_alpha_material_light
:
Int
static
var
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
var
item_touch_helper_swipe_escape_max_velocity
:
Int
static
var
item_touch_helper_swipe_escape_velocity
:
Int
static
var
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
var
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
var
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
var
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
var
mtrl_bottomappbar_height
:
Int
static
var
mtrl_btn_corner_radius
:
Int
static
var
mtrl_btn_dialog_btn_min_width
:
Int
static
var
mtrl_btn_disabled_elevation
:
Int
static
var
mtrl_btn_disabled_z
:
Int
static
var
mtrl_btn_elevation
:
Int
static
var
mtrl_btn_focused_z
:
Int
static
var
mtrl_btn_hovered_z
:
Int
static
var
mtrl_btn_icon_btn_padding_left
:
Int
static
var
mtrl_btn_icon_padding
:
Int
static
var
mtrl_btn_inset
:
Int
static
var
mtrl_btn_letter_spacing
:
Int
static
var
mtrl_btn_padding_bottom
:
Int
static
var
mtrl_btn_padding_left
:
Int
static
var
mtrl_btn_padding_right
:
Int
static
var
mtrl_btn_padding_top
:
Int
static
var
mtrl_btn_pressed_z
:
Int
static
var
mtrl_btn_stroke_size
:
Int
static
var
mtrl_btn_text_btn_icon_padding
:
Int
static
var
mtrl_btn_text_btn_padding_left
:
Int
static
var
mtrl_btn_text_btn_padding_right
:
Int
static
var
mtrl_btn_text_size
:
Int
static
var
mtrl_btn_z
:
Int
static
var
mtrl_card_elevation
:
Int
static
var
mtrl_card_spacing
:
Int
static
var
mtrl_chip_pressed_translation_z
:
Int
static
var
mtrl_chip_text_size
:
Int
static
var
mtrl_fab_elevation
:
Int
static
var
mtrl_fab_translation_z_hovered_focused
:
Int
static
var
mtrl_fab_translation_z_pressed
:
Int
static
var
mtrl_navigation_elevation
:
Int
static
var
mtrl_navigation_item_horizontal_padding
:
Int
static
var
mtrl_navigation_item_icon_padding
:
Int
static
var
mtrl_snackbar_background_corner_radius
:
Int
static
var
mtrl_snackbar_margin
:
Int
static
var
mtrl_textinput_box_bottom_offset
:
Int
static
var
mtrl_textinput_box_corner_radius_medium
:
Int
static
var
mtrl_textinput_box_corner_radius_small
:
Int
static
var
mtrl_textinput_box_label_cutout_padding
:
Int
static
var
mtrl_textinput_box_padding_end
:
Int
static
var
mtrl_textinput_box_stroke_width_default
:
Int
static
var
mtrl_textinput_box_stroke_width_focused
:
Int
static
var
mtrl_textinput_outline_box_expanded_padding
:
Int
static
var
mtrl_toolbar_default_height
:
Int
static
var
notification_action_icon_size
:
Int
static
var
notification_action_text_size
:
Int
static
var
notification_big_circle_margin
:
Int
static
var
notification_content_margin_start
:
Int
static
var
notification_large_icon_height
:
Int
static
var
notification_large_icon_width
:
Int
static
var
notification_main_column_padding_top
:
Int
static
var
notification_media_narrow_margin
:
Int
static
var
notification_right_icon_size
:
Int
static
var
notification_right_side_padding_top
:
Int
static
var
notification_small_icon_background_padding
:
Int
static
var
notification_small_icon_size_as_large
:
Int
static
var
notification_subtext_size
:
Int
static
var
notification_top_pad
:
Int
static
var
notification_top_pad_large_text
:
Int
static
var
tooltip_corner_radius
:
Int
static
var
tooltip_horizontal_padding
:
Int
static
var
tooltip_margin
:
Int
static
var
tooltip_precise_anchor_extra_offset
:
Int
static
var
tooltip_precise_anchor_threshold
:
Int
static
var
tooltip_vertical_padding
:
Int
static
var
tooltip_y_offset_non_touch
:
Int
static
var
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
var
abc_ab_share_pack_mtrl_alpha
:
Int
static
var
abc_action_bar_item_background_material
:
Int
static
var
abc_btn_borderless_material
:
Int
static
var
abc_btn_check_material
:
Int
static
var
abc_btn_check_to_on_mtrl_000
:
Int
static
var
abc_btn_check_to_on_mtrl_015
:
Int
static
var
abc_btn_colored_material
:
Int
static
var
abc_btn_default_mtrl_shape
:
Int
static
var
abc_btn_radio_material
:
Int
static
var
abc_btn_radio_to_on_mtrl_000
:
Int
static
var
abc_btn_radio_to_on_mtrl_015
:
Int
static
var
abc_btn_switch_to_on_mtrl_00001
:
Int
static
var
abc_btn_switch_to_on_mtrl_00012
:
Int
static
var
abc_cab_background_internal_bg
:
Int
static
var
abc_cab_background_top_material
:
Int
static
var
abc_cab_background_top_mtrl_alpha
:
Int
static
var
abc_control_background_material
:
Int
static
var
abc_dialog_material_background
:
Int
static
var
abc_edit_text_material
:
Int
static
var
abc_ic_ab_back_material
:
Int
static
var
abc_ic_arrow_drop_right_black_24dp
:
Int
static
var
abc_ic_clear_material
:
Int
static
var
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
var
abc_ic_go_search_api_material
:
Int
static
var
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_cut_mtrl_alpha
:
Int
static
var
abc_ic_menu_overflow_material
:
Int
static
var
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
var
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
var
abc_ic_menu_share_mtrl_alpha
:
Int
static
var
abc_ic_search_api_material
:
Int
static
var
abc_ic_star_black_16dp
:
Int
static
var
abc_ic_star_black_36dp
:
Int
static
var
abc_ic_star_black_48dp
:
Int
static
var
abc_ic_star_half_black_16dp
:
Int
static
var
abc_ic_star_half_black_36dp
:
Int
static
var
abc_ic_star_half_black_48dp
:
Int
static
var
abc_ic_voice_search_api_material
:
Int
static
var
abc_item_background_holo_dark
:
Int
static
var
abc_item_background_holo_light
:
Int
static
var
abc_list_divider_material
:
Int
static
var
abc_list_divider_mtrl_alpha
:
Int
static
var
abc_list_focused_holo
:
Int
static
var
abc_list_longpressed_holo
:
Int
static
var
abc_list_pressed_holo_dark
:
Int
static
var
abc_list_pressed_holo_light
:
Int
static
var
abc_list_selector_background_transition_holo_dark
:
Int
static
var
abc_list_selector_background_transition_holo_light
:
Int
static
var
abc_list_selector_disabled_holo_dark
:
Int
static
var
abc_list_selector_disabled_holo_light
:
Int
static
var
abc_list_selector_holo_dark
:
Int
static
var
abc_list_selector_holo_light
:
Int
static
var
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
var
abc_popup_background_mtrl_mult
:
Int
static
var
abc_ratingbar_indicator_material
:
Int
static
var
abc_ratingbar_material
:
Int
static
var
abc_ratingbar_small_material
:
Int
static
var
abc_scrubber_control_off_mtrl_alpha
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
var
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
var
abc_scrubber_primary_mtrl_alpha
:
Int
static
var
abc_scrubber_track_mtrl_alpha
:
Int
static
var
abc_seekbar_thumb_material
:
Int
static
var
abc_seekbar_tick_mark_material
:
Int
static
var
abc_seekbar_track_material
:
Int
static
var
abc_spinner_mtrl_am_alpha
:
Int
static
var
abc_spinner_textfield_background_material
:
Int
static
var
abc_switch_thumb_material
:
Int
static
var
abc_switch_track_mtrl_alpha
:
Int
static
var
abc_tab_indicator_material
:
Int
static
var
abc_tab_indicator_mtrl_alpha
:
Int
static
var
abc_text_cursor_material
:
Int
static
var
abc_text_select_handle_left_mtrl_dark
:
Int
static
var
abc_text_select_handle_left_mtrl_light
:
Int
static
var
abc_text_select_handle_middle_mtrl_dark
:
Int
static
var
abc_text_select_handle_middle_mtrl_light
:
Int
static
var
abc_text_select_handle_right_mtrl_dark
:
Int
static
var
abc_text_select_handle_right_mtrl_light
:
Int
static
var
abc_textfield_activated_mtrl_alpha
:
Int
static
var
abc_textfield_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_activated_mtrl_alpha
:
Int
static
var
abc_textfield_search_default_mtrl_alpha
:
Int
static
var
abc_textfield_search_material
:
Int
static
var
abc_vector_test
:
Int
static
var
american_express
:
Int
static
var
avd_hide_password
:
Int
static
var
avd_show_password
:
Int
static
var
card
:
Int
static
var
cvc
:
Int
static
var
design_bottom_navigation_item_background
:
Int
static
var
design_fab_background
:
Int
static
var
design_ic_visibility
:
Int
static
var
design_ic_visibility_off
:
Int
static
var
design_password_eye
:
Int
static
var
design_snackbar_background
:
Int
static
var
dinners_club
:
Int
static
var
edit_text_color
:
Int
static
var
expiry_date
:
Int
static
var
ic_mtrl_chip_checked_black
:
Int
static
var
ic_mtrl_chip_checked_circle
:
Int
static
var
ic_mtrl_chip_close_circle
:
Int
static
var
mastercard
:
Int
static
var
mtrl_snackbar_background
:
Int
static
var
mtrl_tabs_default_indicator
:
Int
static
var
navigation_empty_icon
:
Int
static
var
notification_action_background
:
Int
static
var
notification_bg
:
Int
static
var
notification_bg_low
:
Int
static
var
notification_bg_low_normal
:
Int
static
var
notification_bg_low_pressed
:
Int
static
var
notification_bg_normal
:
Int
static
var
notification_bg_normal_pressed
:
Int
static
var
notification_icon_background
:
Int
static
var
notification_template_icon_bg
:
Int
static
var
notification_template_icon_low_bg
:
Int
static
var
notification_tile_bg
:
Int
static
var
notify_panel_notification_icon_bg
:
Int
static
var
tooltip_frame_dark
:
Int
static
var
tooltip_frame_light
:
Int
static
var
visa
:
Int
class
id
Module Contents
id
(
)
static
var
action_bar
:
Int
static
var
action_bar_activity_content
:
Int
static
var
action_bar_container
:
Int
static
var
action_bar_root
:
Int
static
var
action_bar_spinner
:
Int
static
var
action_bar_subtitle
:
Int
static
var
action_bar_title
:
Int
static
var
action_container
:
Int
static
var
action_context_bar
:
Int
static
var
action_divider
:
Int
static
var
action_image
:
Int
static
var
action_menu_divider
:
Int
static
var
action_menu_presenter
:
Int
static
var
action_mode_bar
:
Int
static
var
action_mode_bar_stub
:
Int
static
var
action_mode_close_button
:
Int
static
var
action_text
:
Int
static
var
actions
:
Int
static
var
activity_chooser_view_content
:
Int
static
var
add
:
Int
static
var
alertTitle
:
Int
static
var
async
:
Int
static
var
auto
:
Int
static
var
barrier
:
Int
static
var
blocking
:
Int
static
var
bottom
:
Int
static
var
buttonPanel
:
Int
static
var
center
:
Int
static
var
chains
:
Int
static
var
checkbox
:
Int
static
var
chronometer
:
Int
static
var
container
:
Int
static
var
content
:
Int
static
var
contentPanel
:
Int
static
var
coordinator
:
Int
static
var
custom
:
Int
static
var
customPanel
:
Int
static
var
decor_content_parent
:
Int
static
var
default_activity_button
:
Int
static
var
design_bottom_sheet
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_menu_item_action_area_stub
:
Int
static
var
design_menu_item_text
:
Int
static
var
design_navigation_view
:
Int
static
var
dimensions
:
Int
static
var
direct
:
Int
static
var
edit_query
:
Int
static
var
edit_text_card_number
:
Int
static
var
edit_text_expiry_date
:
Int
static
var
edit_text_security_code
:
Int
static
var
end
:
Int
static
var
expand_activities_button
:
Int
static
var
expanded_menu
:
Int
static
var
fill
:
Int
static
var
filled
:
Int
static
var
fixed
:
Int
static
var
forever
:
Int
static
var
ghost_view
:
Int
static
var
gone
:
Int
static
var
group_divider
:
Int
static
var
home
:
Int
static
var
icon
:
Int
static
var
icon_group
:
Int
static
var
image
:
Int
static
var
info
:
Int
static
var
invisible
:
Int
static
var
italic
:
Int
static
var
item_touch_helper_previous_elevation
:
Int
static
var
labeled
:
Int
static
var
largeLabel
:
Int
static
var
left
:
Int
static
var
line1
:
Int
static
var
line3
:
Int
static
var
listMode
:
Int
static
var
list_item
:
Int
static
var
masked
:
Int
static
var
message
:
Int
static
var
mini
:
Int
static
var
mtrl_child_content_container
:
Int
static
var
mtrl_internal_children_alpha_tag
:
Int
static
var
multiply
:
Int
static
var
navigation_header_container
:
Int
static
var
none
:
Int
static
var
normal
:
Int
static
var
notification_background
:
Int
static
var
notification_main_column
:
Int
static
var
notification_main_column_container
:
Int
static
var
outline
:
Int
static
var
packed
:
Int
static
var
parallax
:
Int
static
var
parent
:
Int
static
var
parentPanel
:
Int
static
var
parent_matrix
:
Int
static
var
percent
:
Int
static
var
pin
:
Int
static
var
progress_circular
:
Int
static
var
progress_horizontal
:
Int
static
var
radio
:
Int
static
var
right
:
Int
static
var
right_icon
:
Int
static
var
right_side
:
Int
static
var
save_image_matrix
:
Int
static
var
save_non_transition_alpha
:
Int
static
var
save_scale_type
:
Int
static
var
screen
:
Int
static
var
scrollIndicatorDown
:
Int
static
var
scrollIndicatorUp
:
Int
static
var
scrollView
:
Int
static
var
scrollable
:
Int
static
var
search_badge
:
Int
static
var
search_bar
:
Int
static
var
search_button
:
Int
static
var
search_close_btn
:
Int
static
var
search_edit_frame
:
Int
static
var
search_go_btn
:
Int
static
var
search_mag_icon
:
Int
static
var
search_plate
:
Int
static
var
search_src_text
:
Int
static
var
search_voice_btn
:
Int
static
var
second_row_layout
:
Int
static
var
select_dialog_listview
:
Int
static
var
selected
:
Int
static
var
shortcut
:
Int
static
var
smallLabel
:
Int
static
var
snackbar_action
:
Int
static
var
snackbar_text
:
Int
static
var
spacer
:
Int
static
var
split_action_bar
:
Int
static
var
spread
:
Int
static
var
spread_inside
:
Int
static
var
src_atop
:
Int
static
var
src_in
:
Int
static
var
src_over
:
Int
static
var
standard
:
Int
static
var
start
:
Int
static
var
stretch
:
Int
static
var
submenuarrow
:
Int
static
var
submit_area
:
Int
static
var
tabMode
:
Int
static
var
tag_transition_group
:
Int
static
var
tag_unhandled_key_event_manager
:
Int
static
var
tag_unhandled_key_listeners
:
Int
static
var
text
:
Int
static
var
text2
:
Int
static
var
textSpacerNoButtons
:
Int
static
var
textSpacerNoTitle
:
Int
static
var
text_input_password_toggle
:
Int
static
var
text_layout_card_number
:
Int
static
var
text_layout_expiry_date
:
Int
static
var
text_layout_security_code
:
Int
static
var
textinput_counter
:
Int
static
var
textinput_error
:
Int
static
var
textinput_helper_text
:
Int
static
var
time
:
Int
static
var
title
:
Int
static
var
titleDividerNoCustom
:
Int
static
var
title_template
:
Int
static
var
top
:
Int
static
var
topPanel
:
Int
static
var
touch_outside
:
Int
static
var
transition_current_scene
:
Int
static
var
transition_layout_save
:
Int
static
var
transition_position
:
Int
static
var
transition_scene_layoutid_cache
:
Int
static
var
transition_transform
:
Int
static
var
uniform
:
Int
static
var
unlabeled
:
Int
static
var
up
:
Int
static
var
view_offset_helper
:
Int
static
var
visible
:
Int
static
var
wrap
:
Int
static
var
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
var
abc_config_activityDefaultDur
:
Int
static
var
abc_config_activityShortDur
:
Int
static
var
app_bar_elevation_anim_duration
:
Int
static
var
bottom_sheet_slide_duration
:
Int
static
var
cancel_button_image_alpha
:
Int
static
var
config_tooltipAnimTime
:
Int
static
var
design_snackbar_text_max_lines
:
Int
static
var
design_tab_indicator_anim_duration_ms
:
Int
static
var
hide_password_duration
:
Int
static
var
mtrl_btn_anim_delay_ms
:
Int
static
var
mtrl_btn_anim_duration_ms
:
Int
static
var
mtrl_chip_anim_duration
:
Int
static
var
mtrl_tab_indicator_anim_duration_ms
:
Int
static
var
show_password_duration
:
Int
static
var
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
var
mtrl_fast_out_linear_in
:
Int
static
var
mtrl_fast_out_slow_in
:
Int
static
var
mtrl_linear
:
Int
static
var
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
var
abc_action_bar_title_item
:
Int
static
var
abc_action_bar_up_container
:
Int
static
var
abc_action_menu_item_layout
:
Int
static
var
abc_action_menu_layout
:
Int
static
var
abc_action_mode_bar
:
Int
static
var
abc_action_mode_close_item_material
:
Int
static
var
abc_activity_chooser_view
:
Int
static
var
abc_activity_chooser_view_list_item
:
Int
static
var
abc_alert_dialog_button_bar_material
:
Int
static
var
abc_alert_dialog_material
:
Int
static
var
abc_alert_dialog_title_material
:
Int
static
var
abc_cascading_menu_item_layout
:
Int
static
var
abc_dialog_title_material
:
Int
static
var
abc_expanded_menu_layout
:
Int
static
var
abc_list_menu_item_checkbox
:
Int
static
var
abc_list_menu_item_icon
:
Int
static
var
abc_list_menu_item_layout
:
Int
static
var
abc_list_menu_item_radio
:
Int
static
var
abc_popup_menu_header_item_layout
:
Int
static
var
abc_popup_menu_item_layout
:
Int
static
var
abc_screen_content_include
:
Int
static
var
abc_screen_simple
:
Int
static
var
abc_screen_simple_overlay_action_mode
:
Int
static
var
abc_screen_toolbar
:
Int
static
var
abc_search_dropdown_item_icons_2line
:
Int
static
var
abc_search_view
:
Int
static
var
abc_select_dialog_material
:
Int
static
var
abc_tooltip
:
Int
static
var
add_card_widget
:
Int
static
var
design_bottom_navigation_item
:
Int
static
var
design_bottom_sheet_dialog
:
Int
static
var
design_layout_snackbar
:
Int
static
var
design_layout_snackbar_include
:
Int
static
var
design_layout_tab_icon
:
Int
static
var
design_layout_tab_text
:
Int
static
var
design_menu_item_action_area
:
Int
static
var
design_navigation_item
:
Int
static
var
design_navigation_item_header
:
Int
static
var
design_navigation_item_separator
:
Int
static
var
design_navigation_item_subheader
:
Int
static
var
design_navigation_menu
:
Int
static
var
design_navigation_menu_item
:
Int
static
var
design_text_input_password_icon
:
Int
static
var
mtrl_layout_snackbar
:
Int
static
var
mtrl_layout_snackbar_include
:
Int
static
var
notification_action
:
Int
static
var
notification_action_tombstone
:
Int
static
var
notification_template_custom_big
:
Int
static
var
notification_template_icon_group
:
Int
static
var
notification_template_part_chronometer
:
Int
static
var
notification_template_part_time
:
Int
static
var
select_dialog_item_material
:
Int
static
var
select_dialog_multichoice_material
:
Int
static
var
select_dialog_singlechoice_material
:
Int
static
var
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
string
(
)
static
var
abc_action_bar_home_description
:
Int
static
var
abc_action_bar_up_description
:
Int
static
var
abc_action_menu_overflow_description
:
Int
static
var
abc_action_mode_done
:
Int
static
var
abc_activity_chooser_view_see_all
:
Int
static
var
abc_activitychooserview_choose_application
:
Int
static
var
abc_capital_off
:
Int
static
var
abc_capital_on
:
Int
static
var
abc_font_family_body_1_material
:
Int
static
var
abc_font_family_body_2_material
:
Int
static
var
abc_font_family_button_material
:
Int
static
var
abc_font_family_caption_material
:
Int
static
var
abc_font_family_display_1_material
:
Int
static
var
abc_font_family_display_2_material
:
Int
static
var
abc_font_family_display_3_material
:
Int
static
var
abc_font_family_display_4_material
:
Int
static
var
abc_font_family_headline_material
:
Int
static
var
abc_font_family_menu_material
:
Int
static
var
abc_font_family_subhead_material
:
Int
static
var
abc_font_family_title_material
:
Int
static
var
abc_menu_alt_shortcut_label
:
Int
static
var
abc_menu_ctrl_shortcut_label
:
Int
static
var
abc_menu_delete_shortcut_label
:
Int
static
var
abc_menu_enter_shortcut_label
:
Int
static
var
abc_menu_function_shortcut_label
:
Int
static
var
abc_menu_meta_shortcut_label
:
Int
static
var
abc_menu_shift_shortcut_label
:
Int
static
var
abc_menu_space_shortcut_label
:
Int
static
var
abc_menu_sym_shortcut_label
:
Int
static
var
abc_prepend_shortcut_label
:
Int
static
var
abc_search_hint
:
Int
static
var
abc_searchview_description_clear
:
Int
static
var
abc_searchview_description_query
:
Int
static
var
abc_searchview_description_search
:
Int
static
var
abc_searchview_description_submit
:
Int
static
var
abc_searchview_description_voice
:
Int
static
var
abc_shareactionprovider_share_with
:
Int
static
var
abc_shareactionprovider_share_with_application
:
Int
static
var
abc_toolbar_collapse_description
:
Int
static
var
app_name
:
Int
static
var
appbar_scrolling_view_behavior
:
Int
static
var
bottom_sheet_behavior
:
Int
static
var
card_number_hint
:
Int
static
var
character_counter_content_description
:
Int
static
var
character_counter_pattern
:
Int
static
var
error_card_number
:
Int
static
var
error_expiry_date
:
Int
static
var
error_security_code
:
Int
static
var
expiry_date_hint
:
Int
static
var
fab_transformation_scrim_behavior
:
Int
static
var
fab_transformation_sheet_behavior
:
Int
static
var
hide_bottom_view_on_scroll_behavior
:
Int
static
var
label_card_number
:
Int
static
var
label_expiry_date
:
Int
static
var
label_security_code
:
Int
static
var
mtrl_chip_close_icon_content_description
:
Int
static
var
password_toggle_content_description
:
Int
static
var
path_password_eye
:
Int
static
var
path_password_eye_mask_strike_through
:
Int
static
var
path_password_eye_mask_visible
:
Int
static
var
path_password_strike_through
:
Int
static
var
search_menu_title
:
Int
static
var
security_code_hint_3
:
Int
static
var
security_code_hint_4
:
Int
static
var
status_bar_notification_info_overflow
:
Int
static
var
title_activity_add_card
:
Int
static
var
valid_digits
:
Int
class
style
Module Contents
style
(
)
static
var
AlertDialog_AppCompat
:
Int
static
var
AlertDialog_AppCompat_Light
:
Int
static
var
Animation_AppCompat_Dialog
:
Int
static
var
Animation_AppCompat_DropDownUp
:
Int
static
var
Animation_AppCompat_Tooltip
:
Int
static
var
Animation_Design_BottomSheetDialog
:
Int
static
var
AppTheme
:
Int
static
var
AppTheme_AppBarOverlay
:
Int
static
var
AppTheme_NoActionBar
:
Int
static
var
AppTheme_PopupOverlay
:
Int
static
var
Base_AlertDialog_AppCompat
:
Int
static
var
Base_AlertDialog_AppCompat_Light
:
Int
static
var
Base_Animation_AppCompat_Dialog
:
Int
static
var
Base_Animation_AppCompat_DropDownUp
:
Int
static
var
Base_Animation_AppCompat_Tooltip
:
Int
static
var
Base_CardView
:
Int
static
var
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
var
Base_DialogWindowTitle_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat
:
Int
static
var
Base_TextAppearance_AppCompat_Body1
:
Int
static
var
Base_TextAppearance_AppCompat_Body2
:
Int
static
var
Base_TextAppearance_AppCompat_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Caption
:
Int
static
var
Base_TextAppearance_AppCompat_Display1
:
Int
static
var
Base_TextAppearance_AppCompat_Display2
:
Int
static
var
Base_TextAppearance_AppCompat_Display3
:
Int
static
var
Base_TextAppearance_AppCompat_Display4
:
Int
static
var
Base_TextAppearance_AppCompat_Headline
:
Int
static
var
Base_TextAppearance_AppCompat_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Medium
:
Int
static
var
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead
:
Int
static
var
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
Base_ThemeOverlay_AppCompat
:
Int
static
var
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
Base_ThemeOverlay_AppCompat_Light
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat
:
Int
static
var
Base_Theme_AppCompat_CompactMenu
:
Int
static
var
Base_Theme_AppCompat_Dialog
:
Int
static
var
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Base_Theme_AppCompat_Light
:
Int
static
var
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents
:
Int
static
var
Base_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
var
Base_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Base_Theme_MaterialComponents_Light
:
Int
static
var
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
var
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
Base_V14_Theme_MaterialComponents
:
Int
static
var
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat
:
Int
static
var
Base_V21_Theme_AppCompat_Dialog
:
Int
static
var
Base_V21_Theme_AppCompat_Light
:
Int
static
var
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V22_Theme_AppCompat
:
Int
static
var
Base_V22_Theme_AppCompat_Light
:
Int
static
var
Base_V23_Theme_AppCompat
:
Int
static
var
Base_V23_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Theme_AppCompat
:
Int
static
var
Base_V26_Theme_AppCompat_Light
:
Int
static
var
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
var
Base_V28_Theme_AppCompat
:
Int
static
var
Base_V28_Theme_AppCompat_Light
:
Int
static
var
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat
:
Int
static
var
Base_V7_Theme_AppCompat_Dialog
:
Int
static
var
Base_V7_Theme_AppCompat_Light
:
Int
static
var
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
var
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_V7_Widget_AppCompat_EditText
:
Int
static
var
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_ActionBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_ActionButton
:
Int
static
var
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Base_Widget_AppCompat_ActionMode
:
Int
static
var
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
var
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Base_Widget_AppCompat_Button
:
Int
static
var
Base_Widget_AppCompat_ButtonBar
:
Int
static
var
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless
:
Int
static
var
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Base_Widget_AppCompat_Button_Colored
:
Int
static
var
Base_Widget_AppCompat_Button_Small
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
var
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Base_Widget_AppCompat_EditText
:
Int
static
var
Base_Widget_AppCompat_ImageButton
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_ListMenuView
:
Int
static
var
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
var
Base_Widget_AppCompat_ListView
:
Int
static
var
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
var
Base_Widget_AppCompat_ListView_Menu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu
:
Int
static
var
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Base_Widget_AppCompat_PopupWindow
:
Int
static
var
Base_Widget_AppCompat_ProgressBar
:
Int
static
var
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Base_Widget_AppCompat_RatingBar
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
var
Base_Widget_AppCompat_SearchView
:
Int
static
var
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar
:
Int
static
var
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Base_Widget_AppCompat_Spinner
:
Int
static
var
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Base_Widget_AppCompat_Toolbar
:
Int
static
var
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Base_Widget_Design_TabLayout
:
Int
static
var
Base_Widget_MaterialComponents_Chip
:
Int
static
var
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
var
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
var
CardView
:
Int
static
var
CardView_Dark
:
Int
static
var
CardView_Light
:
Int
static
var
PHEditTextStyle
:
Int
static
var
PHErrorAppearanceStyle
:
Int
static
var
PHTextInputLayoutStyle
:
Int
static
var
Platform_AppCompat
:
Int
static
var
Platform_AppCompat_Light
:
Int
static
var
Platform_MaterialComponents
:
Int
static
var
Platform_MaterialComponents_Dialog
:
Int
static
var
Platform_MaterialComponents_Light
:
Int
static
var
Platform_MaterialComponents_Light_Dialog
:
Int
static
var
Platform_ThemeOverlay_AppCompat
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
var
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
var
Platform_V21_AppCompat
:
Int
static
var
Platform_V21_AppCompat_Light
:
Int
static
var
Platform_V25_AppCompat
:
Int
static
var
Platform_V25_AppCompat_Light
:
Int
static
var
Platform_Widget_AppCompat_Spinner
:
Int
static
var
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
var
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
var
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
var
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
var
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
var
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
TextAppearance_AppCompat
:
Int
static
var
TextAppearance_AppCompat_Body1
:
Int
static
var
TextAppearance_AppCompat_Body2
:
Int
static
var
TextAppearance_AppCompat_Button
:
Int
static
var
TextAppearance_AppCompat_Caption
:
Int
static
var
TextAppearance_AppCompat_Display1
:
Int
static
var
TextAppearance_AppCompat_Display2
:
Int
static
var
TextAppearance_AppCompat_Display3
:
Int
static
var
TextAppearance_AppCompat_Display4
:
Int
static
var
TextAppearance_AppCompat_Headline
:
Int
static
var
TextAppearance_AppCompat_Inverse
:
Int
static
var
TextAppearance_AppCompat_Large
:
Int
static
var
TextAppearance_AppCompat_Large_Inverse
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Medium
:
Int
static
var
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
var
TextAppearance_AppCompat_Menu
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
var
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
var
TextAppearance_AppCompat_Small
:
Int
static
var
TextAppearance_AppCompat_Small_Inverse
:
Int
static
var
TextAppearance_AppCompat_Subhead
:
Int
static
var
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
var
TextAppearance_AppCompat_Title
:
Int
static
var
TextAppearance_AppCompat_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Tooltip
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
var
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_Button
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
var
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
var
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
var
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
var
TextAppearance_AppCompat_Widget_Switch
:
Int
static
var
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
var
TextAppearance_Compat_Notification
:
Int
static
var
TextAppearance_Compat_Notification_Info
:
Int
static
var
TextAppearance_Compat_Notification_Line2
:
Int
static
var
TextAppearance_Compat_Notification_Time
:
Int
static
var
TextAppearance_Compat_Notification_Title
:
Int
static
var
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
var
TextAppearance_Design_Counter
:
Int
static
var
TextAppearance_Design_Counter_Overflow
:
Int
static
var
TextAppearance_Design_Error
:
Int
static
var
TextAppearance_Design_HelperText
:
Int
static
var
TextAppearance_Design_Hint
:
Int
static
var
TextAppearance_Design_Snackbar_Message
:
Int
static
var
TextAppearance_Design_Tab
:
Int
static
var
TextAppearance_MaterialComponents_Body1
:
Int
static
var
TextAppearance_MaterialComponents_Body2
:
Int
static
var
TextAppearance_MaterialComponents_Button
:
Int
static
var
TextAppearance_MaterialComponents_Caption
:
Int
static
var
TextAppearance_MaterialComponents_Chip
:
Int
static
var
TextAppearance_MaterialComponents_Headline1
:
Int
static
var
TextAppearance_MaterialComponents_Headline2
:
Int
static
var
TextAppearance_MaterialComponents_Headline3
:
Int
static
var
TextAppearance_MaterialComponents_Headline4
:
Int
static
var
TextAppearance_MaterialComponents_Headline5
:
Int
static
var
TextAppearance_MaterialComponents_Headline6
:
Int
static
var
TextAppearance_MaterialComponents_Overline
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
var
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
var
TextAppearance_MaterialComponents_Tab
:
Int
static
var
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
var
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
var
ThemeOverlay_AppCompat
:
Int
static
var
ThemeOverlay_AppCompat_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dark
:
Int
static
var
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
var
ThemeOverlay_AppCompat_Dialog
:
Int
static
var
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
var
ThemeOverlay_AppCompat_Light
:
Int
static
var
ThemeOverlay_MaterialComponents
:
Int
static
var
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark
:
Int
static
var
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
var
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
var
ThemeOverlay_MaterialComponents_Light
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Theme_AppCompat
:
Int
static
var
Theme_AppCompat_CompactMenu
:
Int
static
var
Theme_AppCompat_DayNight
:
Int
static
var
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
var
Theme_AppCompat_DayNight_Dialog
:
Int
static
var
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
var
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
var
Theme_AppCompat_Dialog
:
Int
static
var
Theme_AppCompat_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light
:
Int
static
var
Theme_AppCompat_Light_DarkActionBar
:
Int
static
var
Theme_AppCompat_Light_Dialog
:
Int
static
var
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
var
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
var
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
var
Theme_AppCompat_Light_NoActionBar
:
Int
static
var
Theme_AppCompat_NoActionBar
:
Int
static
var
Theme_Design
:
Int
static
var
Theme_Design_BottomSheetDialog
:
Int
static
var
Theme_Design_Light
:
Int
static
var
Theme_Design_Light_BottomSheetDialog
:
Int
static
var
Theme_Design_Light_NoActionBar
:
Int
static
var
Theme_Design_NoActionBar
:
Int
static
var
Theme_MaterialComponents
:
Int
static
var
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Bridge
:
Int
static
var
Theme_MaterialComponents_CompactMenu
:
Int
static
var
Theme_MaterialComponents_Dialog
:
Int
static
var
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light
:
Int
static
var
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
var
Theme_MaterialComponents_Light_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
var
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog
:
Int
static
var
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
var
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
var
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
var
Theme_MaterialComponents_NoActionBar
:
Int
static
var
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
var
Widget_AppCompat_ActionBar
:
Int
static
var
Widget_AppCompat_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_ActionButton
:
Int
static
var
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_ActionMode
:
Int
static
var
Widget_AppCompat_ActivityChooserView
:
Int
static
var
Widget_AppCompat_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Button
:
Int
static
var
Widget_AppCompat_ButtonBar
:
Int
static
var
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Borderless
:
Int
static
var
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
var
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
var
Widget_AppCompat_Button_Colored
:
Int
static
var
Widget_AppCompat_Button_Small
:
Int
static
var
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
var
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
var
Widget_AppCompat_CompoundButton_Switch
:
Int
static
var
Widget_AppCompat_DrawerArrowToggle
:
Int
static
var
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_EditText
:
Int
static
var
Widget_AppCompat_ImageButton
:
Int
static
var
Widget_AppCompat_Light_ActionBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
var
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
var
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActionButton
:
Int
static
var
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
var
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
var
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
var
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
var
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
var
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
var
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
var
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
var
Widget_AppCompat_Light_PopupMenu
:
Int
static
var
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_Light_SearchView
:
Int
static
var
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_ListMenuView
:
Int
static
var
Widget_AppCompat_ListPopupWindow
:
Int
static
var
Widget_AppCompat_ListView
:
Int
static
var
Widget_AppCompat_ListView_DropDown
:
Int
static
var
Widget_AppCompat_ListView_Menu
:
Int
static
var
Widget_AppCompat_PopupMenu
:
Int
static
var
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
var
Widget_AppCompat_PopupWindow
:
Int
static
var
Widget_AppCompat_ProgressBar
:
Int
static
var
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
var
Widget_AppCompat_RatingBar
:
Int
static
var
Widget_AppCompat_RatingBar_Indicator
:
Int
static
var
Widget_AppCompat_RatingBar_Small
:
Int
static
var
Widget_AppCompat_SearchView
:
Int
static
var
Widget_AppCompat_SearchView_ActionBar
:
Int
static
var
Widget_AppCompat_SeekBar
:
Int
static
var
Widget_AppCompat_SeekBar_Discrete
:
Int
static
var
Widget_AppCompat_Spinner
:
Int
static
var
Widget_AppCompat_Spinner_DropDown
:
Int
static
var
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
var
Widget_AppCompat_Spinner_Underlined
:
Int
static
var
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
var
Widget_AppCompat_Toolbar
:
Int
static
var
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
var
Widget_Compat_NotificationActionContainer
:
Int
static
var
Widget_Compat_NotificationActionText
:
Int
static
var
Widget_Design_AppBarLayout
:
Int
static
var
Widget_Design_BottomNavigationView
:
Int
static
var
Widget_Design_BottomSheet_Modal
:
Int
static
var
Widget_Design_CollapsingToolbar
:
Int
static
var
Widget_Design_FloatingActionButton
:
Int
static
var
Widget_Design_NavigationView
:
Int
static
var
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
var
Widget_Design_Snackbar
:
Int
static
var
Widget_Design_TabLayout
:
Int
static
var
Widget_Design_TextInputLayout
:
Int
static
var
Widget_MaterialComponents_BottomAppBar
:
Int
static
var
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView
:
Int
static
var
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
var
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
var
Widget_MaterialComponents_Button
:
Int
static
var
Widget_MaterialComponents_Button_Icon
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
var
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
var
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
var
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
var
Widget_MaterialComponents_CardView
:
Int
static
var
Widget_MaterialComponents_ChipGroup
:
Int
static
var
Widget_MaterialComponents_Chip_Action
:
Int
static
var
Widget_MaterialComponents_Chip_Choice
:
Int
static
var
Widget_MaterialComponents_Chip_Entry
:
Int
static
var
Widget_MaterialComponents_Chip_Filter
:
Int
static
var
Widget_MaterialComponents_FloatingActionButton
:
Int
static
var
Widget_MaterialComponents_NavigationView
:
Int
static
var
Widget_MaterialComponents_Snackbar
:
Int
static
var
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
var
Widget_MaterialComponents_TabLayout
:
Int
static
var
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
var
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
var
Widget_MaterialComponents_Toolbar
:
Int
static
var
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
var
ActionBar
:
IntArray
static
var
ActionBarLayout
:
IntArray
static
var
ActionBarLayout_android_layout_gravity
:
Int
static
var
ActionBar_background
:
Int
static
var
ActionBar_backgroundSplit
:
Int
static
var
ActionBar_backgroundStacked
:
Int
static
var
ActionBar_contentInsetEnd
:
Int
static
var
ActionBar_contentInsetEndWithActions
:
Int
static
var
ActionBar_contentInsetLeft
:
Int
static
var
ActionBar_contentInsetRight
:
Int
static
var
ActionBar_contentInsetStart
:
Int
static
var
ActionBar_contentInsetStartWithNavigation
:
Int
static
var
ActionBar_customNavigationLayout
:
Int
static
var
ActionBar_displayOptions
:
Int
static
var
ActionBar_divider
:
Int
static
var
ActionBar_elevation
:
Int
static
var
ActionBar_height
:
Int
static
var
ActionBar_hideOnContentScroll
:
Int
static
var
ActionBar_homeAsUpIndicator
:
Int
static
var
ActionBar_homeLayout
:
Int
static
var
ActionBar_icon
:
Int
static
var
ActionBar_indeterminateProgressStyle
:
Int
static
var
ActionBar_itemPadding
:
Int
static
var
ActionBar_logo
:
Int
static
var
ActionBar_navigationMode
:
Int
static
var
ActionBar_popupTheme
:
Int
static
var
ActionBar_progressBarPadding
:
Int
static
var
ActionBar_progressBarStyle
:
Int
static
var
ActionBar_subtitle
:
Int
static
var
ActionBar_subtitleTextStyle
:
Int
static
var
ActionBar_title
:
Int
static
var
ActionBar_titleTextStyle
:
Int
static
var
ActionMenuItemView
:
IntArray
static
var
ActionMenuItemView_android_minWidth
:
Int
static
var
ActionMode
:
IntArray
static
var
ActionMode_background
:
Int
static
var
ActionMode_backgroundSplit
:
Int
static
var
ActionMode_closeItemLayout
:
Int
static
var
ActionMode_height
:
Int
static
var
ActionMode_subtitleTextStyle
:
Int
static
var
ActionMode_titleTextStyle
:
Int
static
var
ActivityChooserView
:
IntArray
static
var
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
var
ActivityChooserView_initialActivityCount
:
Int
static
var
AlertDialog
:
IntArray
static
var
AlertDialog_android_layout
:
Int
static
var
AlertDialog_buttonIconDimen
:
Int
static
var
AlertDialog_buttonPanelSideLayout
:
Int
static
var
AlertDialog_listItemLayout
:
Int
static
var
AlertDialog_listLayout
:
Int
static
var
AlertDialog_multiChoiceItemLayout
:
Int
static
var
AlertDialog_showTitle
:
Int
static
var
AlertDialog_singleChoiceItemLayout
:
Int
static
var
AnimatedStateListDrawableCompat
:
IntArray
static
var
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
var
AnimatedStateListDrawableCompat_android_dither
:
Int
static
var
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
var
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
var
AnimatedStateListDrawableCompat_android_visible
:
Int
static
var
AnimatedStateListDrawableItem
:
IntArray
static
var
AnimatedStateListDrawableItem_android_drawable
:
Int
static
var
AnimatedStateListDrawableItem_android_id
:
Int
static
var
AnimatedStateListDrawableTransition
:
IntArray
static
var
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
var
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
var
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
var
AnimatedStateListDrawableTransition_android_toId
:
Int
static
var
AppBarLayout
:
IntArray
static
var
AppBarLayoutStates
:
IntArray
static
var
AppBarLayoutStates_state_collapsed
:
Int
static
var
AppBarLayoutStates_state_collapsible
:
Int
static
var
AppBarLayoutStates_state_liftable
:
Int
static
var
AppBarLayoutStates_state_lifted
:
Int
static
var
AppBarLayout_Layout
:
IntArray
static
var
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
var
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
var
AppBarLayout_android_background
:
Int
static
var
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
var
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
var
AppBarLayout_elevation
:
Int
static
var
AppBarLayout_expanded
:
Int
static
var
AppBarLayout_liftOnScroll
:
Int
static
var
AppCompatImageView
:
IntArray
static
var
AppCompatImageView_android_src
:
Int
static
var
AppCompatImageView_srcCompat
:
Int
static
var
AppCompatImageView_tint
:
Int
static
var
AppCompatImageView_tintMode
:
Int
static
var
AppCompatSeekBar
:
IntArray
static
var
AppCompatSeekBar_android_thumb
:
Int
static
var
AppCompatSeekBar_tickMark
:
Int
static
var
AppCompatSeekBar_tickMarkTint
:
Int
static
var
AppCompatSeekBar_tickMarkTintMode
:
Int
static
var
AppCompatTextHelper
:
IntArray
static
var
AppCompatTextHelper_android_drawableBottom
:
Int
static
var
AppCompatTextHelper_android_drawableEnd
:
Int
static
var
AppCompatTextHelper_android_drawableLeft
:
Int
static
var
AppCompatTextHelper_android_drawableRight
:
Int
static
var
AppCompatTextHelper_android_drawableStart
:
Int
static
var
AppCompatTextHelper_android_drawableTop
:
Int
static
var
AppCompatTextHelper_android_textAppearance
:
Int
static
var
AppCompatTextView
:
IntArray
static
var
AppCompatTextView_android_textAppearance
:
Int
static
var
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
var
AppCompatTextView_autoSizeMinTextSize
:
Int
static
var
AppCompatTextView_autoSizePresetSizes
:
Int
static
var
AppCompatTextView_autoSizeStepGranularity
:
Int
static
var
AppCompatTextView_autoSizeTextType
:
Int
static
var
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
var
AppCompatTextView_fontFamily
:
Int
static
var
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
var
AppCompatTextView_lineHeight
:
Int
static
var
AppCompatTextView_textAllCaps
:
Int
static
var
AppCompatTheme
:
IntArray
static
var
AppCompatTheme_actionBarDivider
:
Int
static
var
AppCompatTheme_actionBarItemBackground
:
Int
static
var
AppCompatTheme_actionBarPopupTheme
:
Int
static
var
AppCompatTheme_actionBarSize
:
Int
static
var
AppCompatTheme_actionBarSplitStyle
:
Int
static
var
AppCompatTheme_actionBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabBarStyle
:
Int
static
var
AppCompatTheme_actionBarTabStyle
:
Int
static
var
AppCompatTheme_actionBarTabTextStyle
:
Int
static
var
AppCompatTheme_actionBarTheme
:
Int
static
var
AppCompatTheme_actionBarWidgetTheme
:
Int
static
var
AppCompatTheme_actionButtonStyle
:
Int
static
var
AppCompatTheme_actionDropDownStyle
:
Int
static
var
AppCompatTheme_actionMenuTextAppearance
:
Int
static
var
AppCompatTheme_actionMenuTextColor
:
Int
static
var
AppCompatTheme_actionModeBackground
:
Int
static
var
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
var
AppCompatTheme_actionModeCloseDrawable
:
Int
static
var
AppCompatTheme_actionModeCopyDrawable
:
Int
static
var
AppCompatTheme_actionModeCutDrawable
:
Int
static
var
AppCompatTheme_actionModeFindDrawable
:
Int
static
var
AppCompatTheme_actionModePasteDrawable
:
Int
static
var
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
var
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
var
AppCompatTheme_actionModeShareDrawable
:
Int
static
var
AppCompatTheme_actionModeSplitBackground
:
Int
static
var
AppCompatTheme_actionModeStyle
:
Int
static
var
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
var
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
var
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
var
AppCompatTheme_activityChooserViewStyle
:
Int
static
var
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
var
AppCompatTheme_alertDialogCenterButtons
:
Int
static
var
AppCompatTheme_alertDialogStyle
:
Int
static
var
AppCompatTheme_alertDialogTheme
:
Int
static
var
AppCompatTheme_android_windowAnimationStyle
:
Int
static
var
AppCompatTheme_android_windowIsFloating
:
Int
static
var
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
var
AppCompatTheme_borderlessButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
var
AppCompatTheme_buttonBarStyle
:
Int
static
var
AppCompatTheme_buttonStyle
:
Int
static
var
AppCompatTheme_buttonStyleSmall
:
Int
static
var
AppCompatTheme_checkboxStyle
:
Int
static
var
AppCompatTheme_checkedTextViewStyle
:
Int
static
var
AppCompatTheme_colorAccent
:
Int
static
var
AppCompatTheme_colorBackgroundFloating
:
Int
static
var
AppCompatTheme_colorButtonNormal
:
Int
static
var
AppCompatTheme_colorControlActivated
:
Int
static
var
AppCompatTheme_colorControlHighlight
:
Int
static
var
AppCompatTheme_colorControlNormal
:
Int
static
var
AppCompatTheme_colorError
:
Int
static
var
AppCompatTheme_colorPrimary
:
Int
static
var
AppCompatTheme_colorPrimaryDark
:
Int
static
var
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
var
AppCompatTheme_controlBackground
:
Int
static
var
AppCompatTheme_dialogCornerRadius
:
Int
static
var
AppCompatTheme_dialogPreferredPadding
:
Int
static
var
AppCompatTheme_dialogTheme
:
Int
static
var
AppCompatTheme_dividerHorizontal
:
Int
static
var
AppCompatTheme_dividerVertical
:
Int
static
var
AppCompatTheme_dropDownListViewStyle
:
Int
static
var
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
var
AppCompatTheme_editTextBackground
:
Int
static
var
AppCompatTheme_editTextColor
:
Int
static
var
AppCompatTheme_editTextStyle
:
Int
static
var
AppCompatTheme_homeAsUpIndicator
:
Int
static
var
AppCompatTheme_imageButtonStyle
:
Int
static
var
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
var
AppCompatTheme_listDividerAlertDialog
:
Int
static
var
AppCompatTheme_listMenuViewStyle
:
Int
static
var
AppCompatTheme_listPopupWindowStyle
:
Int
static
var
AppCompatTheme_listPreferredItemHeight
:
Int
static
var
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
var
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
var
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
var
AppCompatTheme_panelBackground
:
Int
static
var
AppCompatTheme_panelMenuListTheme
:
Int
static
var
AppCompatTheme_panelMenuListWidth
:
Int
static
var
AppCompatTheme_popupMenuStyle
:
Int
static
var
AppCompatTheme_popupWindowStyle
:
Int
static
var
AppCompatTheme_radioButtonStyle
:
Int
static
var
AppCompatTheme_ratingBarStyle
:
Int
static
var
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
var
AppCompatTheme_ratingBarStyleSmall
:
Int
static
var
AppCompatTheme_searchViewStyle
:
Int
static
var
AppCompatTheme_seekBarStyle
:
Int
static
var
AppCompatTheme_selectableItemBackground
:
Int
static
var
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
var
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
var
AppCompatTheme_spinnerStyle
:
Int
static
var
AppCompatTheme_switchStyle
:
Int
static
var
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
var
AppCompatTheme_textAppearanceListItem
:
Int
static
var
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
var
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
var
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
var
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
var
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
var
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
var
AppCompatTheme_textColorSearchUrl
:
Int
static
var
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
var
AppCompatTheme_toolbarStyle
:
Int
static
var
AppCompatTheme_tooltipForegroundColor
:
Int
static
var
AppCompatTheme_tooltipFrameBackground
:
Int
static
var
AppCompatTheme_viewInflaterClass
:
Int
static
var
AppCompatTheme_windowActionBar
:
Int
static
var
AppCompatTheme_windowActionBarOverlay
:
Int
static
var
AppCompatTheme_windowActionModeOverlay
:
Int
static
var
AppCompatTheme_windowFixedHeightMajor
:
Int
static
var
AppCompatTheme_windowFixedHeightMinor
:
Int
static
var
AppCompatTheme_windowFixedWidthMajor
:
Int
static
var
AppCompatTheme_windowFixedWidthMinor
:
Int
static
var
AppCompatTheme_windowMinWidthMajor
:
Int
static
var
AppCompatTheme_windowMinWidthMinor
:
Int
static
var
AppCompatTheme_windowNoTitle
:
Int
static
var
BottomAppBar
:
IntArray
static
var
BottomAppBar_backgroundTint
:
Int
static
var
BottomAppBar_fabAlignmentMode
:
Int
static
var
BottomAppBar_fabCradleMargin
:
Int
static
var
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
var
BottomAppBar_fabCradleVerticalOffset
:
Int
static
var
BottomAppBar_hideOnScroll
:
Int
static
var
BottomNavigationView
:
IntArray
static
var
BottomNavigationView_elevation
:
Int
static
var
BottomNavigationView_itemBackground
:
Int
static
var
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
var
BottomNavigationView_itemIconSize
:
Int
static
var
BottomNavigationView_itemIconTint
:
Int
static
var
BottomNavigationView_itemTextAppearanceActive
:
Int
static
var
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
var
BottomNavigationView_itemTextColor
:
Int
static
var
BottomNavigationView_labelVisibilityMode
:
Int
static
var
BottomNavigationView_menu
:
Int
static
var
BottomSheetBehavior_Layout
:
IntArray
static
var
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
var
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
var
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
var
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
var
ButtonBarLayout
:
IntArray
static
var
ButtonBarLayout_allowStacking
:
Int
static
var
CardView
:
IntArray
static
var
CardView_android_minHeight
:
Int
static
var
CardView_android_minWidth
:
Int
static
var
CardView_cardBackgroundColor
:
Int
static
var
CardView_cardCornerRadius
:
Int
static
var
CardView_cardElevation
:
Int
static
var
CardView_cardMaxElevation
:
Int
static
var
CardView_cardPreventCornerOverlap
:
Int
static
var
CardView_cardUseCompatPadding
:
Int
static
var
CardView_contentPadding
:
Int
static
var
CardView_contentPaddingBottom
:
Int
static
var
CardView_contentPaddingLeft
:
Int
static
var
CardView_contentPaddingRight
:
Int
static
var
CardView_contentPaddingTop
:
Int
static
var
Chip
:
IntArray
static
var
ChipGroup
:
IntArray
static
var
ChipGroup_checkedChip
:
Int
static
var
ChipGroup_chipSpacing
:
Int
static
var
ChipGroup_chipSpacingHorizontal
:
Int
static
var
ChipGroup_chipSpacingVertical
:
Int
static
var
ChipGroup_singleLine
:
Int
static
var
ChipGroup_singleSelection
:
Int
static
var
Chip_android_checkable
:
Int
static
var
Chip_android_ellipsize
:
Int
static
var
Chip_android_maxWidth
:
Int
static
var
Chip_android_text
:
Int
static
var
Chip_android_textAppearance
:
Int
static
var
Chip_checkedIcon
:
Int
static
var
Chip_checkedIconEnabled
:
Int
static
var
Chip_checkedIconVisible
:
Int
static
var
Chip_chipBackgroundColor
:
Int
static
var
Chip_chipCornerRadius
:
Int
static
var
Chip_chipEndPadding
:
Int
static
var
Chip_chipIcon
:
Int
static
var
Chip_chipIconEnabled
:
Int
static
var
Chip_chipIconSize
:
Int
static
var
Chip_chipIconTint
:
Int
static
var
Chip_chipIconVisible
:
Int
static
var
Chip_chipMinHeight
:
Int
static
var
Chip_chipStartPadding
:
Int
static
var
Chip_chipStrokeColor
:
Int
static
var
Chip_chipStrokeWidth
:
Int
static
var
Chip_closeIcon
:
Int
static
var
Chip_closeIconEnabled
:
Int
static
var
Chip_closeIconEndPadding
:
Int
static
var
Chip_closeIconSize
:
Int
static
var
Chip_closeIconStartPadding
:
Int
static
var
Chip_closeIconTint
:
Int
static
var
Chip_closeIconVisible
:
Int
static
var
Chip_hideMotionSpec
:
Int
static
var
Chip_iconEndPadding
:
Int
static
var
Chip_iconStartPadding
:
Int
static
var
Chip_rippleColor
:
Int
static
var
Chip_showMotionSpec
:
Int
static
var
Chip_textEndPadding
:
Int
static
var
Chip_textStartPadding
:
Int
static
var
CollapsingToolbarLayout
:
IntArray
static
var
CollapsingToolbarLayout_Layout
:
IntArray
static
var
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
var
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_contentScrim
:
Int
static
var
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
var
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
var
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
var
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
var
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
var
CollapsingToolbarLayout_statusBarScrim
:
Int
static
var
CollapsingToolbarLayout_title
:
Int
static
var
CollapsingToolbarLayout_titleEnabled
:
Int
static
var
CollapsingToolbarLayout_toolbarId
:
Int
static
var
ColorStateListItem
:
IntArray
static
var
ColorStateListItem_alpha
:
Int
static
var
ColorStateListItem_android_alpha
:
Int
static
var
ColorStateListItem_android_color
:
Int
static
var
CompoundButton
:
IntArray
static
var
CompoundButton_android_button
:
Int
static
var
CompoundButton_buttonTint
:
Int
static
var
CompoundButton_buttonTintMode
:
Int
static
var
ConstraintLayout_Layout
:
IntArray
static
var
ConstraintLayout_Layout_android_maxHeight
:
Int
static
var
ConstraintLayout_Layout_android_maxWidth
:
Int
static
var
ConstraintLayout_Layout_android_minHeight
:
Int
static
var
ConstraintLayout_Layout_android_minWidth
:
Int
static
var
ConstraintLayout_Layout_android_orientation
:
Int
static
var
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
var
ConstraintLayout_Layout_barrierDirection
:
Int
static
var
ConstraintLayout_Layout_chainUseRtl
:
Int
static
var
ConstraintLayout_Layout_constraintSet
:
Int
static
var
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
var
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
var
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
var
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
var
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
var
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
var
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
var
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
var
ConstraintLayout_placeholder
:
IntArray
static
var
ConstraintLayout_placeholder_content
:
Int
static
var
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
var
ConstraintSet
:
IntArray
static
var
ConstraintSet_android_alpha
:
Int
static
var
ConstraintSet_android_elevation
:
Int
static
var
ConstraintSet_android_id
:
Int
static
var
ConstraintSet_android_layout_height
:
Int
static
var
ConstraintSet_android_layout_marginBottom
:
Int
static
var
ConstraintSet_android_layout_marginEnd
:
Int
static
var
ConstraintSet_android_layout_marginLeft
:
Int
static
var
ConstraintSet_android_layout_marginRight
:
Int
static
var
ConstraintSet_android_layout_marginStart
:
Int
static
var
ConstraintSet_android_layout_marginTop
:
Int
static
var
ConstraintSet_android_layout_width
:
Int
static
var
ConstraintSet_android_orientation
:
Int
static
var
ConstraintSet_android_rotation
:
Int
static
var
ConstraintSet_android_rotationX
:
Int
static
var
ConstraintSet_android_rotationY
:
Int
static
var
ConstraintSet_android_scaleX
:
Int
static
var
ConstraintSet_android_scaleY
:
Int
static
var
ConstraintSet_android_transformPivotX
:
Int
static
var
ConstraintSet_android_transformPivotY
:
Int
static
var
ConstraintSet_android_translationX
:
Int
static
var
ConstraintSet_android_translationY
:
Int
static
var
ConstraintSet_android_translationZ
:
Int
static
var
ConstraintSet_android_visibility
:
Int
static
var
ConstraintSet_layout_constrainedHeight
:
Int
static
var
ConstraintSet_layout_constrainedWidth
:
Int
static
var
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
var
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_creator
:
Int
static
var
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintCircle
:
Int
static
var
ConstraintSet_layout_constraintCircleAngle
:
Int
static
var
ConstraintSet_layout_constraintCircleRadius
:
Int
static
var
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
var
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintGuide_begin
:
Int
static
var
ConstraintSet_layout_constraintGuide_end
:
Int
static
var
ConstraintSet_layout_constraintGuide_percent
:
Int
static
var
ConstraintSet_layout_constraintHeight_default
:
Int
static
var
ConstraintSet_layout_constraintHeight_max
:
Int
static
var
ConstraintSet_layout_constraintHeight_min
:
Int
static
var
ConstraintSet_layout_constraintHeight_percent
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
var
ConstraintSet_layout_constraintLeft_creator
:
Int
static
var
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintRight_creator
:
Int
static
var
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
var
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
var
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
var
ConstraintSet_layout_constraintTop_creator
:
Int
static
var
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
var
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
var
ConstraintSet_layout_constraintVertical_bias
:
Int
static
var
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
var
ConstraintSet_layout_constraintVertical_weight
:
Int
static
var
ConstraintSet_layout_constraintWidth_default
:
Int
static
var
ConstraintSet_layout_constraintWidth_max
:
Int
static
var
ConstraintSet_layout_constraintWidth_min
:
Int
static
var
ConstraintSet_layout_constraintWidth_percent
:
Int
static
var
ConstraintSet_layout_editor_absoluteX
:
Int
static
var
ConstraintSet_layout_editor_absoluteY
:
Int
static
var
ConstraintSet_layout_goneMarginBottom
:
Int
static
var
ConstraintSet_layout_goneMarginEnd
:
Int
static
var
ConstraintSet_layout_goneMarginLeft
:
Int
static
var
ConstraintSet_layout_goneMarginRight
:
Int
static
var
ConstraintSet_layout_goneMarginStart
:
Int
static
var
ConstraintSet_layout_goneMarginTop
:
Int
static
var
CoordinatorLayout
:
IntArray
static
var
CoordinatorLayout_Layout
:
IntArray
static
var
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
var
CoordinatorLayout_Layout_layout_anchor
:
Int
static
var
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
var
CoordinatorLayout_Layout_layout_behavior
:
Int
static
var
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
var
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
var
CoordinatorLayout_Layout_layout_keyline
:
Int
static
var
CoordinatorLayout_keylines
:
Int
static
var
CoordinatorLayout_statusBarBackground
:
Int
static
var
DesignTheme
:
IntArray
static
var
DesignTheme_bottomSheetDialogTheme
:
Int
static
var
DesignTheme_bottomSheetStyle
:
Int
static
var
DrawerArrowToggle
:
IntArray
static
var
DrawerArrowToggle_arrowHeadLength
:
Int
static
var
DrawerArrowToggle_arrowShaftLength
:
Int
static
var
DrawerArrowToggle_barLength
:
Int
static
var
DrawerArrowToggle_color
:
Int
static
var
DrawerArrowToggle_drawableSize
:
Int
static
var
DrawerArrowToggle_gapBetweenBars
:
Int
static
var
DrawerArrowToggle_spinBars
:
Int
static
var
DrawerArrowToggle_thickness
:
Int
static
var
FloatingActionButton
:
IntArray
static
var
FloatingActionButton_Behavior_Layout
:
IntArray
static
var
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
var
FloatingActionButton_backgroundTint
:
Int
static
var
FloatingActionButton_backgroundTintMode
:
Int
static
var
FloatingActionButton_borderWidth
:
Int
static
var
FloatingActionButton_elevation
:
Int
static
var
FloatingActionButton_fabCustomSize
:
Int
static
var
FloatingActionButton_fabSize
:
Int
static
var
FloatingActionButton_hideMotionSpec
:
Int
static
var
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
var
FloatingActionButton_maxImageSize
:
Int
static
var
FloatingActionButton_pressedTranslationZ
:
Int
static
var
FloatingActionButton_rippleColor
:
Int
static
var
FloatingActionButton_showMotionSpec
:
Int
static
var
FloatingActionButton_useCompatPadding
:
Int
static
var
FlowLayout
:
IntArray
static
var
FlowLayout_itemSpacing
:
Int
static
var
FlowLayout_lineSpacing
:
Int
static
var
FontFamily
:
IntArray
static
var
FontFamilyFont
:
IntArray
static
var
FontFamilyFont_android_font
:
Int
static
var
FontFamilyFont_android_fontStyle
:
Int
static
var
FontFamilyFont_android_fontVariationSettings
:
Int
static
var
FontFamilyFont_android_fontWeight
:
Int
static
var
FontFamilyFont_android_ttcIndex
:
Int
static
var
FontFamilyFont_font
:
Int
static
var
FontFamilyFont_fontStyle
:
Int
static
var
FontFamilyFont_fontVariationSettings
:
Int
static
var
FontFamilyFont_fontWeight
:
Int
static
var
FontFamilyFont_ttcIndex
:
Int
static
var
FontFamily_fontProviderAuthority
:
Int
static
var
FontFamily_fontProviderCerts
:
Int
static
var
FontFamily_fontProviderFetchStrategy
:
Int
static
var
FontFamily_fontProviderFetchTimeout
:
Int
static
var
FontFamily_fontProviderPackage
:
Int
static
var
FontFamily_fontProviderQuery
:
Int
static
var
ForegroundLinearLayout
:
IntArray
static
var
ForegroundLinearLayout_android_foreground
:
Int
static
var
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
var
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
var
GradientColor
:
IntArray
static
var
GradientColorItem
:
IntArray
static
var
GradientColorItem_android_color
:
Int
static
var
GradientColorItem_android_offset
:
Int
static
var
GradientColor_android_centerColor
:
Int
static
var
GradientColor_android_centerX
:
Int
static
var
GradientColor_android_centerY
:
Int
static
var
GradientColor_android_endColor
:
Int
static
var
GradientColor_android_endX
:
Int
static
var
GradientColor_android_endY
:
Int
static
var
GradientColor_android_gradientRadius
:
Int
static
var
GradientColor_android_startColor
:
Int
static
var
GradientColor_android_startX
:
Int
static
var
GradientColor_android_startY
:
Int
static
var
GradientColor_android_tileMode
:
Int
static
var
GradientColor_android_type
:
Int
static
var
LinearConstraintLayout
:
IntArray
static
var
LinearConstraintLayout_android_orientation
:
Int
static
var
LinearLayoutCompat
:
IntArray
static
var
LinearLayoutCompat_Layout
:
IntArray
static
var
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
var
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
var
LinearLayoutCompat_android_baselineAligned
:
Int
static
var
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
var
LinearLayoutCompat_android_gravity
:
Int
static
var
LinearLayoutCompat_android_orientation
:
Int
static
var
LinearLayoutCompat_android_weightSum
:
Int
static
var
LinearLayoutCompat_divider
:
Int
static
var
LinearLayoutCompat_dividerPadding
:
Int
static
var
LinearLayoutCompat_measureWithLargestChild
:
Int
static
var
LinearLayoutCompat_showDividers
:
Int
static
var
ListPopupWindow
:
IntArray
static
var
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
var
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
var
MaterialButton
:
IntArray
static
var
MaterialButton_android_insetBottom
:
Int
static
var
MaterialButton_android_insetLeft
:
Int
static
var
MaterialButton_android_insetRight
:
Int
static
var
MaterialButton_android_insetTop
:
Int
static
var
MaterialButton_backgroundTint
:
Int
static
var
MaterialButton_backgroundTintMode
:
Int
static
var
MaterialButton_cornerRadius
:
Int
static
var
MaterialButton_icon
:
Int
static
var
MaterialButton_iconGravity
:
Int
static
var
MaterialButton_iconPadding
:
Int
static
var
MaterialButton_iconSize
:
Int
static
var
MaterialButton_iconTint
:
Int
static
var
MaterialButton_iconTintMode
:
Int
static
var
MaterialButton_rippleColor
:
Int
static
var
MaterialButton_strokeColor
:
Int
static
var
MaterialButton_strokeWidth
:
Int
static
var
MaterialCardView
:
IntArray
static
var
MaterialCardView_strokeColor
:
Int
static
var
MaterialCardView_strokeWidth
:
Int
static
var
MaterialComponentsTheme
:
IntArray
static
var
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
var
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
var
MaterialComponentsTheme_chipGroupStyle
:
Int
static
var
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
var
MaterialComponentsTheme_chipStyle
:
Int
static
var
MaterialComponentsTheme_colorAccent
:
Int
static
var
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
var
MaterialComponentsTheme_colorPrimary
:
Int
static
var
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
var
MaterialComponentsTheme_colorSecondary
:
Int
static
var
MaterialComponentsTheme_editTextStyle
:
Int
static
var
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialButtonStyle
:
Int
static
var
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
var
MaterialComponentsTheme_navigationViewStyle
:
Int
static
var
MaterialComponentsTheme_scrimBackground
:
Int
static
var
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
var
MaterialComponentsTheme_tabStyle
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
var
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
var
MaterialComponentsTheme_textAppearanceButton
:
Int
static
var
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
var
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
var
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
var
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
var
MaterialComponentsTheme_textInputStyle
:
Int
static
var
MenuGroup
:
IntArray
static
var
MenuGroup_android_checkableBehavior
:
Int
static
var
MenuGroup_android_enabled
:
Int
static
var
MenuGroup_android_id
:
Int
static
var
MenuGroup_android_menuCategory
:
Int
static
var
MenuGroup_android_orderInCategory
:
Int
static
var
MenuGroup_android_visible
:
Int
static
var
MenuItem
:
IntArray
static
var
MenuItem_actionLayout
:
Int
static
var
MenuItem_actionProviderClass
:
Int
static
var
MenuItem_actionViewClass
:
Int
static
var
MenuItem_alphabeticModifiers
:
Int
static
var
MenuItem_android_alphabeticShortcut
:
Int
static
var
MenuItem_android_checkable
:
Int
static
var
MenuItem_android_checked
:
Int
static
var
MenuItem_android_enabled
:
Int
static
var
MenuItem_android_icon
:
Int
static
var
MenuItem_android_id
:
Int
static
var
MenuItem_android_menuCategory
:
Int
static
var
MenuItem_android_numericShortcut
:
Int
static
var
MenuItem_android_onClick
:
Int
static
var
MenuItem_android_orderInCategory
:
Int
static
var
MenuItem_android_title
:
Int
static
var
MenuItem_android_titleCondensed
:
Int
static
var
MenuItem_android_visible
:
Int
static
var
MenuItem_contentDescription
:
Int
static
var
MenuItem_iconTint
:
Int
static
var
MenuItem_iconTintMode
:
Int
static
var
MenuItem_numericModifiers
:
Int
static
var
MenuItem_showAsAction
:
Int
static
var
MenuItem_tooltipText
:
Int
static
var
MenuView
:
IntArray
static
var
MenuView_android_headerBackground
:
Int
static
var
MenuView_android_horizontalDivider
:
Int
static
var
MenuView_android_itemBackground
:
Int
static
var
MenuView_android_itemIconDisabledAlpha
:
Int
static
var
MenuView_android_itemTextAppearance
:
Int
static
var
MenuView_android_verticalDivider
:
Int
static
var
MenuView_android_windowAnimationStyle
:
Int
static
var
MenuView_preserveIconSpacing
:
Int
static
var
MenuView_subMenuArrow
:
Int
static
var
NavigationView
:
IntArray
static
var
NavigationView_android_background
:
Int
static
var
NavigationView_android_fitsSystemWindows
:
Int
static
var
NavigationView_android_maxWidth
:
Int
static
var
NavigationView_elevation
:
Int
static
var
NavigationView_headerLayout
:
Int
static
var
NavigationView_itemBackground
:
Int
static
var
NavigationView_itemHorizontalPadding
:
Int
static
var
NavigationView_itemIconPadding
:
Int
static
var
NavigationView_itemIconTint
:
Int
static
var
NavigationView_itemTextAppearance
:
Int
static
var
NavigationView_itemTextColor
:
Int
static
var
NavigationView_menu
:
Int
static
var
PopupWindow
:
IntArray
static
var
PopupWindowBackgroundState
:
IntArray
static
var
PopupWindowBackgroundState_state_above_anchor
:
Int
static
var
PopupWindow_android_popupAnimationStyle
:
Int
static
var
PopupWindow_android_popupBackground
:
Int
static
var
PopupWindow_overlapAnchor
:
Int
static
var
RecycleListView
:
IntArray
static
var
RecycleListView_paddingBottomNoButtons
:
Int
static
var
RecycleListView_paddingTopNoTitle
:
Int
static
var
RecyclerView
:
IntArray
static
var
RecyclerView_android_descendantFocusability
:
Int
static
var
RecyclerView_android_orientation
:
Int
static
var
RecyclerView_fastScrollEnabled
:
Int
static
var
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
var
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
var
RecyclerView_layoutManager
:
Int
static
var
RecyclerView_reverseLayout
:
Int
static
var
RecyclerView_spanCount
:
Int
static
var
RecyclerView_stackFromEnd
:
Int
static
var
ScrimInsetsFrameLayout
:
IntArray
static
var
ScrimInsetsFrameLayout_insetForeground
:
Int
static
var
ScrollingViewBehavior_Layout
:
IntArray
static
var
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
var
SearchView
:
IntArray
static
var
SearchView_android_focusable
:
Int
static
var
SearchView_android_imeOptions
:
Int
static
var
SearchView_android_inputType
:
Int
static
var
SearchView_android_maxWidth
:
Int
static
var
SearchView_closeIcon
:
Int
static
var
SearchView_commitIcon
:
Int
static
var
SearchView_defaultQueryHint
:
Int
static
var
SearchView_goIcon
:
Int
static
var
SearchView_iconifiedByDefault
:
Int
static
var
SearchView_layout
:
Int
static
var
SearchView_queryBackground
:
Int
static
var
SearchView_queryHint
:
Int
static
var
SearchView_searchHintIcon
:
Int
static
var
SearchView_searchIcon
:
Int
static
var
SearchView_submitBackground
:
Int
static
var
SearchView_suggestionRowLayout
:
Int
static
var
SearchView_voiceIcon
:
Int
static
var
Snackbar
:
IntArray
static
var
SnackbarLayout
:
IntArray
static
var
SnackbarLayout_android_maxWidth
:
Int
static
var
SnackbarLayout_elevation
:
Int
static
var
SnackbarLayout_maxActionInlineWidth
:
Int
static
var
Snackbar_snackbarButtonStyle
:
Int
static
var
Snackbar_snackbarStyle
:
Int
static
var
Spinner
:
IntArray
static
var
Spinner_android_dropDownWidth
:
Int
static
var
Spinner_android_entries
:
Int
static
var
Spinner_android_popupBackground
:
Int
static
var
Spinner_android_prompt
:
Int
static
var
Spinner_popupTheme
:
Int
static
var
StateListDrawable
:
IntArray
static
var
StateListDrawableItem
:
IntArray
static
var
StateListDrawableItem_android_drawable
:
Int
static
var
StateListDrawable_android_constantSize
:
Int
static
var
StateListDrawable_android_dither
:
Int
static
var
StateListDrawable_android_enterFadeDuration
:
Int
static
var
StateListDrawable_android_exitFadeDuration
:
Int
static
var
StateListDrawable_android_variablePadding
:
Int
static
var
StateListDrawable_android_visible
:
Int
static
var
SwitchCompat
:
IntArray
static
var
SwitchCompat_android_textOff
:
Int
static
var
SwitchCompat_android_textOn
:
Int
static
var
SwitchCompat_android_thumb
:
Int
static
var
SwitchCompat_showText
:
Int
static
var
SwitchCompat_splitTrack
:
Int
static
var
SwitchCompat_switchMinWidth
:
Int
static
var
SwitchCompat_switchPadding
:
Int
static
var
SwitchCompat_switchTextAppearance
:
Int
static
var
SwitchCompat_thumbTextPadding
:
Int
static
var
SwitchCompat_thumbTint
:
Int
static
var
SwitchCompat_thumbTintMode
:
Int
static
var
SwitchCompat_track
:
Int
static
var
SwitchCompat_trackTint
:
Int
static
var
SwitchCompat_trackTintMode
:
Int
static
var
TabItem
:
IntArray
static
var
TabItem_android_icon
:
Int
static
var
TabItem_android_layout
:
Int
static
var
TabItem_android_text
:
Int
static
var
TabLayout
:
IntArray
static
var
TabLayout_tabBackground
:
Int
static
var
TabLayout_tabContentStart
:
Int
static
var
TabLayout_tabGravity
:
Int
static
var
TabLayout_tabIconTint
:
Int
static
var
TabLayout_tabIconTintMode
:
Int
static
var
TabLayout_tabIndicator
:
Int
static
var
TabLayout_tabIndicatorAnimationDuration
:
Int
static
var
TabLayout_tabIndicatorColor
:
Int
static
var
TabLayout_tabIndicatorFullWidth
:
Int
static
var
TabLayout_tabIndicatorGravity
:
Int
static
var
TabLayout_tabIndicatorHeight
:
Int
static
var
TabLayout_tabInlineLabel
:
Int
static
var
TabLayout_tabMaxWidth
:
Int
static
var
TabLayout_tabMinWidth
:
Int
static
var
TabLayout_tabMode
:
Int
static
var
TabLayout_tabPadding
:
Int
static
var
TabLayout_tabPaddingBottom
:
Int
static
var
TabLayout_tabPaddingEnd
:
Int
static
var
TabLayout_tabPaddingStart
:
Int
static
var
TabLayout_tabPaddingTop
:
Int
static
var
TabLayout_tabRippleColor
:
Int
static
var
TabLayout_tabSelectedTextColor
:
Int
static
var
TabLayout_tabTextAppearance
:
Int
static
var
TabLayout_tabTextColor
:
Int
static
var
TabLayout_tabUnboundedRipple
:
Int
static
var
TextAppearance
:
IntArray
static
var
TextAppearance_android_fontFamily
:
Int
static
var
TextAppearance_android_shadowColor
:
Int
static
var
TextAppearance_android_shadowDx
:
Int
static
var
TextAppearance_android_shadowDy
:
Int
static
var
TextAppearance_android_shadowRadius
:
Int
static
var
TextAppearance_android_textColor
:
Int
static
var
TextAppearance_android_textColorHint
:
Int
static
var
TextAppearance_android_textColorLink
:
Int
static
var
TextAppearance_android_textSize
:
Int
static
var
TextAppearance_android_textStyle
:
Int
static
var
TextAppearance_android_typeface
:
Int
static
var
TextAppearance_fontFamily
:
Int
static
var
TextAppearance_textAllCaps
:
Int
static
var
TextInputLayout
:
IntArray
static
var
TextInputLayout_android_hint
:
Int
static
var
TextInputLayout_android_textColorHint
:
Int
static
var
TextInputLayout_boxBackgroundColor
:
Int
static
var
TextInputLayout_boxBackgroundMode
:
Int
static
var
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
var
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
var
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
var
TextInputLayout_boxStrokeColor
:
Int
static
var
TextInputLayout_boxStrokeWidth
:
Int
static
var
TextInputLayout_counterEnabled
:
Int
static
var
TextInputLayout_counterMaxLength
:
Int
static
var
TextInputLayout_counterOverflowTextAppearance
:
Int
static
var
TextInputLayout_counterTextAppearance
:
Int
static
var
TextInputLayout_errorEnabled
:
Int
static
var
TextInputLayout_errorTextAppearance
:
Int
static
var
TextInputLayout_helperText
:
Int
static
var
TextInputLayout_helperTextEnabled
:
Int
static
var
TextInputLayout_helperTextTextAppearance
:
Int
static
var
TextInputLayout_hintAnimationEnabled
:
Int
static
var
TextInputLayout_hintEnabled
:
Int
static
var
TextInputLayout_hintTextAppearance
:
Int
static
var
TextInputLayout_passwordToggleContentDescription
:
Int
static
var
TextInputLayout_passwordToggleDrawable
:
Int
static
var
TextInputLayout_passwordToggleEnabled
:
Int
static
var
TextInputLayout_passwordToggleTint
:
Int
static
var
TextInputLayout_passwordToggleTintMode
:
Int
static
var
ThemeEnforcement
:
IntArray
static
var
ThemeEnforcement_android_textAppearance
:
Int
static
var
ThemeEnforcement_enforceMaterialTheme
:
Int
static
var
ThemeEnforcement_enforceTextAppearance
:
Int
static
var
Toolbar
:
IntArray
static
var
Toolbar_android_gravity
:
Int
static
var
Toolbar_android_minHeight
:
Int
static
var
Toolbar_buttonGravity
:
Int
static
var
Toolbar_collapseContentDescription
:
Int
static
var
Toolbar_collapseIcon
:
Int
static
var
Toolbar_contentInsetEnd
:
Int
static
var
Toolbar_contentInsetEndWithActions
:
Int
static
var
Toolbar_contentInsetLeft
:
Int
static
var
Toolbar_contentInsetRight
:
Int
static
var
Toolbar_contentInsetStart
:
Int
static
var
Toolbar_contentInsetStartWithNavigation
:
Int
static
var
Toolbar_logo
:
Int
static
var
Toolbar_logoDescription
:
Int
static
var
Toolbar_maxButtonHeight
:
Int
static
var
Toolbar_navigationContentDescription
:
Int
static
var
Toolbar_navigationIcon
:
Int
static
var
Toolbar_popupTheme
:
Int
static
var
Toolbar_subtitle
:
Int
static
var
Toolbar_subtitleTextAppearance
:
Int
static
var
Toolbar_subtitleTextColor
:
Int
static
var
Toolbar_title
:
Int
static
var
Toolbar_titleMargin
:
Int
static
var
Toolbar_titleMarginBottom
:
Int
static
var
Toolbar_titleMarginEnd
:
Int
static
var
Toolbar_titleMarginStart
:
Int
static
var
Toolbar_titleMarginTop
:
Int
static
var
Toolbar_titleMargins
:
Int
static
var
Toolbar_titleTextAppearance
:
Int
static
var
Toolbar_titleTextColor
:
Int
static
var
View
:
IntArray
static
var
ViewBackgroundHelper
:
IntArray
static
var
ViewBackgroundHelper_android_background
:
Int
static
var
ViewBackgroundHelper_backgroundTint
:
Int
static
var
ViewBackgroundHelper_backgroundTintMode
:
Int
static
var
ViewStubCompat
:
IntArray
static
var
ViewStubCompat_android_id
:
Int
static
var
ViewStubCompat_android_inflatedId
:
Int
static
var
ViewStubCompat_android_layout
:
Int
static
var
View_android_focusable
:
Int
static
var
View_android_theme
:
Int
static
var
View_paddingEnd
:
Int
static
var
View_paddingStart
:
Int
static
var
View_theme
:
Int
interface
ServerBaseURL
Module Contents
abstract
var
baseURL
:
String
package
io.paymenthighway.sdk.exception
Module Contents
class
EmptyDataException
:
Exception
Module Contents
EmptyDataException
(
)
class
InternalErrorException
:
Exception
Module Contents
InternalErrorException
(
code
:
Int
,
message
:
String
)
class
InvalidDataException
:
Exception
Module Contents
InvalidDataException
(
message
:
String
)
class
ResponseErrorException
:
Exception
Module Contents
ResponseErrorException
(
statusCode
:
Int
,
message
:
String
)
class
UnknowErrorException
:
Exception
Module Contents
UnknowErrorException
(
message
:
String
=
""
)
package
io.paymenthighway.sdk.model
Module Contents
data
class
AccountId
Module Contents
AccountId
(
id
:
String
)
val
id
:
String
data
class
ApiResult
:
ApiResultInterface
Module Contents
ApiResult
(
result
:
ApiResultInfo
)
val
OK
:
Int
val
result
:
ApiResultInfo
data
class
ApiResultInfo
Module Contents
ApiResultInfo
(
code
:
Int
,
message
:
String
)
val
code
:
Int
val
message
:
String
interface
ApiResultInterface
Module Contents
abstract
val
result
:
ApiResultInfo
data
class
CardData
Module Contents
CardData
(
pan
:
String
,
cvc
:
String
,
expiryDate
:
ExpiryDate
)
val
cvc
:
String
val
expiryDate
:
ExpiryDate
fun
formatCardNumber
(
cardNumber
:
String
)
:
String
fun
formatSecurityCode
(
securityCode
:
String
,
cardBrand
:
CardBrand
?
)
:
String
fun
isCardNumberValid
(
cardNumber
:
String
)
:
Boolean
fun
isSecurityCodeValid
(
securityCode
:
String
,
cardBrand
:
CardBrand
?
)
:
Boolean
val
pan
:
String
data
class
EncryptionKey
Module Contents
EncryptionKey
(
key
:
String
)
val
key
:
String
data
class
ExpiryDate
Module Contents
ExpiryDate
(
month
:
String
,
year
:
String
)
fun
format
(
expiryDate
:
String
,
deleting
:
Boolean
=
false
)
:
String
fun
fromString
(
expiryDate
:
String
)
:
ExpiryDate
?
val
isValid
:
Boolean
fun
isValid
(
expiryDateString
:
String
)
:
Boolean
val
month
:
String
val
year
:
String
data
class
MerchantId
Module Contents
MerchantId
(
id
:
String
)
val
id
:
String
data
class
PaymentConfig
Module Contents
PaymentConfig
(
merchantId
:
MerchantId
,
accountId
:
AccountId
,
environment
:
EnvironmentInterface
)
val
accountId
:
AccountId
val
environment
:
EnvironmentInterface
val
merchantId
:
MerchantId
data
class
TransactionId
Module Contents
TransactionId
(
id
:
String
)
val
id
:
String
fun
toString
(
)
:
String
package
io.paymenthighway.sdk.ui
Module Contents
class
AddCardWidget
:
LinearLayout
,
ValidationListener
Module Contents
AddCardWidget
(
context
:
Context
?
)
AddCardWidget
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
AddCardWidget
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
addCardWidgetValidationListener
:
ValidationListener
?
var
card
:
CardData
?
var
isValid
:
Boolean
fun
isValidDidChange
(
isValid
:
Boolean
)
:
Unit
val
mCardNumberEditText
:
CardNumberEditText
val
mExpiryDateEditText
:
ExpiryDateEditText
val
mSecurityCodeEditText
:
SecurityCodeEditText
class
CardNumberEditText
:
EditText
Module Contents
CardNumberEditText
(
context
:
Context
?
)
CardNumberEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
CardNumberEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
open
class
EditText
:
TextInputEditText
Module Contents
EditText
(
context
:
Context
?
)
EditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
EditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
editTextValidationListener
:
ValidationListener
?
var
errorText
:
String
?
var
format
:
(
String
)
->
String
var
hintText
:
String
?
var
isValid
:
Boolean
protected
open
fun
onFocusChanged
(
focused
:
Boolean
,
direction
:
Int
,
previouslyFocusedRect
:
Rect
?
)
:
Unit
var
textLayout
:
TextInputLayout
?
var
validate
:
(
String
)
->
Boolean
class
ExpiryDateEditText
:
EditText
Module Contents
ExpiryDateEditText
(
context
:
Context
?
)
ExpiryDateEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
ExpiryDateEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
class
SecurityCodeEditText
:
EditText
Module Contents
SecurityCodeEditText
(
context
:
Context
?
)
SecurityCodeEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
)
SecurityCodeEditText
(
context
:
Context
?
,
attrs
:
AttributeSet
?
,
defStyleAttr
:
Int
)
var
cardBrand
:
(
)
->
CardBrand
?
protected
fun
onFocusChanged
(
focused
:
Boolean
,
direction
:
Int
,
previouslyFocusedRect
:
Rect
?
)
:
Unit
interface
ValidationListener
Module Contents
abstract
fun
isValidDidChange
(
isValid
:
Boolean
)
:
Unit
package
io.paymenthighway.sdk.util
Module Contents
class
CallbackResult
<
T
>
:
Callback
<
T
>
Module Contents
CallbackResult
(
completion
:
(
Result
<
T
,
Exception
>
)
->
Unit
)
val
completion
:
(
Result
<
T
,
Exception
>
)
->
Unit
fun
onFailure
(
call
:
Call
<
T
>
,
t
:
Throwable
)
:
Unit
fun
onResponse
(
call
:
Call
<
T
>
,
response
:
Response
<
T
>
)
:
Unit
class
CallbackResultConvert
<
T
:
ApiResultInterface
,
R
>
:
Callback
<
T
>
Module Contents
CallbackResultConvert
(
completion
:
(
Result
<
R
,
Exception
>
)
->
Unit
,
convert
:
(
T
)
->
Result
<
R
,
Exception
>
)
val
completion
:
(
Result
<
R
,
Exception
>
)
->
Unit
val
convert
:
(
T
)
->
Result
<
R
,
Exception
>
fun
onFailure
(
call
:
Call
<
T
>
,
t
:
Throwable
)
:
Unit
fun
onResponse
(
call
:
Call
<
T
>
,
response
:
Response
<
T
>
)
:
Unit
sealed
class
Result
<
out
V
,
out
E
>
Module Contents
data
class
Failure
<
out
E
>
:
Result
<
Nothing
,
E
>
Module Contents
Failure
(
error
:
E
)
val
error
:
E
data
class
Success
<
out
V
>
:
Result
<
V
,
Nothing
>
Module Contents
Success
(
value
:
V
)
val
value
:
V
fun
<
E
>
failure
(
error
:
E
)
:
Failure
<
E
>
fun
getErrorOrNull
(
)
:
E
?
fun
getOrThrow
(
)
:
V
fun
getValueOrNull
(
)
:
V
?
val
isError
:
Boolean
val
isSuccess
:
Boolean
inline
fun
<
V
>
of
(
function
:
(
)
->
V
)
:
Result
<
V
,
Exception
>
fun
<
V
>
success
(
value
:
V
)
:
Success
<
V
>
java.util.Date
Module Contents
fun
Date
.
timestamp
(
)
:
String
kotlin.String
Module Contents
val
String
.
decimalDigits
:
String
fun
String
.
insertAt
(
index
:
Int
,
element
:
String
)
:
String